-
Notifications
You must be signed in to change notification settings - Fork 20.6k
CSS: Add animation-iteration-count to cssNumber jquery/jquery#2792 #2793
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
Conversation
Thank you for your pull request. It looks like this may be your first contribution to a jQuery Foundation project, if so we need you to sign our Contributor License Agreement (CLA). 📝 Please visit http://contribute.jquery.org/CLA/ to sign. After you signed, the PR is checked again automatically after a minute. If there's still an issue, please reply here to let us know. If you've already signed our CLA, it's possible your git author information doesn't match your CLA signature (both your name and email have to match), for more information, check the status of your CLA check. |
58dc488
to
12515b5
Compare
I only want to fix a litter bug, why not?
I have done below
|
Is ufologist your full name? The CLA check requires a full name (first & last) unless someone has a reason to hide it. |
Thanks @mgol
I need more help. :( |
@ufologist Your commits must be signed by your full name as well. You can modify it via:
You have 3 commits, though, every one of them would have to be modified. You might want to squash them to one commit first. |
@jquery/core This is a mess, we're adding more & more stuff to this array and it'll always be a problem as CSS is expanding. I'd like to get rid of this This is probably too late for 3.0 but how about switching the blacklist to a whitelist? If jQuery doesn't append |
Would you mind creating another issue about it? Otherwise we might clutter this one. |
Right, created #2795 for that. |
I'm looking at the added tests and the ones before it and they seem wrong... We're checking for truthiness of $div.css( "aProperty" ) !== undefined instead? |
Thanks @mgol I understand that set 'animation-iteration-count' by css() is not a common use.
I accpet that
Than I will know 'animation-iteration-count' property need added to |
@ufologist Why this was closed? I don't think @mgol comment was implying that we don't want your changes. |
This PR is fine, I proposed changing an approach but that's a separate duscussion. This PR just needs changes I mentioned in my last comment. I'm reopening. |
@@ -860,6 +860,15 @@ QUnit.test( "Do not append px (#9548, #12990)", function( assert ) { | |||
} else { | |||
assert.ok( true, "No support for column-count CSS property" ); | |||
} | |||
|
|||
$div.css( "animation-iteration-count", 2 ); |
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.
@ufologist Would you like to change this line (and a few previous ones) according to what I wrote in #2793 (comment)? I think it would be good to merge after that's done.
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.
Thanks @mgol.
I have pass the CLA and change the test with your suggestion.
#2792