Skip to content

Commit

Permalink
fix testing animation support (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
greggebura authored and aamirafridi committed Jan 18, 2018
1 parent 9443016 commit f262906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jquery.marquee.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@
keyframeString = '';

// Check css3 support
if (elm.style.animation) {
if (elm.style.animation !== undefined) {
keyframeString = '@keyframes ' + animationName + ' ';
css3AnimationIsSupported = true;
}
Expand Down

0 comments on commit f262906

Please sign in to comment.