We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e8b4c9 commit d6abda1Copy full SHA for d6abda1
index.js
@@ -138,7 +138,7 @@ Compiler.prototype.keyframes = function(node){
138
+ 'keyframes '
139
+ node.name
140
+ '{'
141
- + node.keyframes.map(this.keyframe, this).join('')
+ + node.keyframes.map(this.visit, this).join('')
142
+ '}';
143
}
144
@@ -148,7 +148,7 @@ Compiler.prototype.keyframes = function(node){
148
149
+ ' {\n'
150
+ this.indent(1)
151
- + node.keyframes.map(this.keyframe, this).join('\n')
+ + node.keyframes.map(this.visit, this).join('\n')
152
+ this.indent(-1)
153
154
};
0 commit comments