-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
use correct JQuery #92
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jwulf Thanks for the PR! I think the best approach here may be to remove the jQuery dependency altogether in the modal, since Ember is moving away from including it. What do you think about rewiring those bits using CustomEvent?
@@ -1,6 +1,6 @@ | |||
{ | |||
"name": "ember-bulma", | |||
"version": "0.0.0-semantically-released", | |||
"name": "@magikcraft/ember-bulma", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The name of the package shouldn't be changed. I assume this wasn't intended for this PR but carried over from your personal fork?
"name": "ember-bulma", | ||
"version": "0.0.0-semantically-released", | ||
"name": "@magikcraft/ember-bulma", | ||
"version": "1.1.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, the version is bumped automatically so no need update this manually.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, this was me publishing a package for my own use.
|
||
rules: { | ||
'body-leading-blank': [2, 'always'], | ||
'body-tense': [0, 'always', ['present-imperative']], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why was this removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It has been removed in the linter upstream. Building with a fresh install via npm wouldn't work with it for me.
At the moment, with 3.13.1 of Ember, jQuery integration in the modal is b0rked. This patch fixes it.