From fadb3aa10db9b835545d2521ec8ba54516d26143 Mon Sep 17 00:00:00 2001 From: Zixaphir Date: Thu, 2 Jan 2014 09:48:53 -0700 Subject: [PATCH] @value > value --- builds/appchan-x.user.js | 1 - builds/crx/script.js | 1 - src/Theming/Style.coffee | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index 278cd71ce..f3867eb9c 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -13370,7 +13370,6 @@ }; function _Class(value) { - this.value = value; this.raw = colorToHex(value); } diff --git a/builds/crx/script.js b/builds/crx/script.js index ce4758443..28176a5a8 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -13381,7 +13381,6 @@ }; function _Class(value) { - this.value = value; this.raw = colorToHex(value); } diff --git a/src/Theming/Style.coffee b/src/Theming/Style.coffee index 73fe249de..c8fe2be5e 100644 --- a/src/Theming/Style.coffee +++ b/src/Theming/Style.coffee @@ -251,7 +251,7 @@ Style = else "000000" - constructor: (@value) -> + constructor: (value) -> @raw = colorToHex value hex: -> "#" + @raw