-
-
Notifications
You must be signed in to change notification settings - Fork 78.9k
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 transitionEnd in QUnit since we moved away from PhantomJS #25896
Conversation
6adaf8a
to
51fe56f
Compare
js/src/util.js
Outdated
@@ -14,7 +14,9 @@ const Util = (($) => { | |||
* ------------------------------------------------------------------------ | |||
*/ | |||
|
|||
let transition = false | |||
const transition = { |
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.
Do we really need it to be an object now?
51fe56f
to
6f9c3ff
Compare
Done @XhmikosR, plus I removed |
6f9c3ff
to
fbb3214
Compare
I wonder, won't this break stuff for people using |
it can be a breaking change but if we let this method it will be the same as : supportsTransitionEnd() {
return true
} because we are compatible with browsers whose support transition end. |
Yeah, I think we should keep compatibility and add a todo comment that this should be removed in v5 |
fbb3214
to
f4dbc37
Compare
I did that 😉 |
Thanks! How about |
|
Remove that code because it's useless since we moved away from PhantomJS, plus by doing that our coverage increased a lot 😍