Skip to content

Commit d6abda1

Browse files
committed
.visit everything
1 parent 5e8b4c9 commit d6abda1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ Compiler.prototype.keyframes = function(node){
138138
+ 'keyframes '
139139
+ node.name
140140
+ '{'
141-
+ node.keyframes.map(this.keyframe, this).join('')
141+
+ node.keyframes.map(this.visit, this).join('')
142142
+ '}';
143143
}
144144

@@ -148,7 +148,7 @@ Compiler.prototype.keyframes = function(node){
148148
+ node.name
149149
+ ' {\n'
150150
+ this.indent(1)
151-
+ node.keyframes.map(this.keyframe, this).join('\n')
151+
+ node.keyframes.map(this.visit, this).join('\n')
152152
+ this.indent(-1)
153153
+ '}';
154154
};

0 commit comments

Comments
 (0)