We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a71d1f commit b6e890cCopy full SHA for b6e890c
jquery.keyframes.js
@@ -62,16 +62,15 @@
62
var $frameStyle = $("style#" + frameData.name);
63
64
if ($frameStyle.length > 0) {
65
- $frameStyle.html(css);
+ $frameStyle.append(css);
66
67
var $elems = $("*").filter(function() {
68
this.style[animationString + "Name"] === frameName;
69
});
70
71
$elems.each(function() {
72
- var $el, options;
73
- $el = $(this);
74
- options = $el.data("keyframeOptions");
+ var $el = $(this);
+ var options = $el.data("keyframeOptions");
75
$el.resetKeyframe(function() {
76
$el.playKeyframe(options);
77
0 commit comments