Keep 0, no adding px unit when expanding b0

This commit is contained in:
mattn
2013-06-28 09:55:15 +09:00
parent 0b37e09e5e
commit 5d54856b49
2 changed files with 5 additions and 3 deletions

View File

@@ -43,6 +43,8 @@ function! zencoding#lang#css#parseIntoTree(abbr, type)
let value .= v . 'em'
elseif v == 'auto'
let value .= v
elseif v == '0'
let value .= '0'
else
let value .= v . 'px'
endif