Skip to content

Commit

Permalink
fix undefined num
Browse files Browse the repository at this point in the history
  • Loading branch information
jhchen committed Jul 16, 2017
1 parent 8931e4d commit c4b357a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/core.styl
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ resets(arr)
ol
li
counter-reset: resets(1..MAX_INDENT)
counter-increment: unquote('list-' + num)
counter-increment: unquote('list-0')
&:before
content: unquote('counter(list-' + num + ', ' + LIST_STYLE[0] + ')') '. '
content: unquote('counter(list-0, ' + LIST_STYLE[0] + ')') '. '
for num in (1..MAX_INDENT)
li.ql-indent-{num}
counter-increment: unquote('list-' + num)
Expand Down

0 comments on commit c4b357a

Please sign in to comment.