Skip to content
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

Fix for broken animations with FF31 update #159

Merged
merged 2 commits into from
Sep 12, 2014
Merged

Conversation

eseifert
Copy link
Contributor

See issue #154

@sokra
Copy link
Member

sokra commented Sep 11, 2014

This isn't a fix. It just removes the feature and could have bad side effects to other properties...

@sokra
Copy link
Member

sokra commented Sep 11, 2014

Try to implement something like #154 (comment)

@eseifert
Copy link
Contributor Author

Changed fix according to #154 (comment). I haven't tested it yet.

@@ -41,6 +41,9 @@
}
var index = 1 + name.substr(1).search(/[A-Z]/);
var prefix = name.substr(0, index).toLowerCase();
if(prefix === '') {
return name;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This need to be:

return name.toLowerCase();

@sokra
Copy link
Member

sokra commented Sep 11, 2014

@omervk

@@ -14,7 +14,7 @@
*/
var pfx = (function () {
var style = document.createElement('dummy').style,
prefixes = 'Webkit Moz O ms Khtml'.split(' '),
prefixes = ['webkit', 'moz', 'o', 'ms', 'khtml', ''],
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Each entry need to start with an upper case letter...

@omervk
Copy link

omervk commented Sep 11, 2014

Only noticed this thread after creating a pull request of my own. You're welcome to throw mine away. Cheers :)

sokra added a commit that referenced this pull request Sep 12, 2014
Fix for broken animations with FF31 update
fixes #162
@sokra sokra merged commit 05603b2 into jmpressjs:master Sep 12, 2014
@sokra
Copy link
Member

sokra commented Sep 12, 2014

Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants