Skip to content

Commit a488cd6

Browse files
Fix minor bug
1 parent fe75214 commit a488cd6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

jquery.keyframes.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@
6363

6464
css = PrefixFree.prefixCSS(css + "}");
6565

66-
css += css.replace(prefix, '');
66+
if (prefix.length) {
67+
css += css.replace(prefix, '');
68+
}
6769

6870
$frameStyle = $("style#" + frameData.name);
6971

0 commit comments

Comments
 (0)