@value > value

This commit is contained in:
Zixaphir 2014-01-02 09:48:53 -07:00
parent b545d672f0
commit fadb3aa10d
3 changed files with 1 additions and 3 deletions

View File

@ -13370,7 +13370,6 @@
};
function _Class(value) {
this.value = value;
this.raw = colorToHex(value);
}

View File

@ -13381,7 +13381,6 @@
};
function _Class(value) {
this.value = value;
this.raw = colorToHex(value);
}

View File

@ -251,7 +251,7 @@ Style =
else
"000000"
constructor: (@value) ->
constructor: (value) ->
@raw = colorToHex value
hex: -> "#" + @raw