diff options
author | Eric Guzman | 2012-05-22 15:47:56 -0700 |
---|---|---|
committer | Eric Guzman | 2012-05-22 15:47:56 -0700 |
commit | 0eb95ff2dbba1fe7213eed2e0140b4d07bda3dd5 (patch) | |
tree | 904db0d53c7de3a93f7c782d62315442066d646a | |
parent | 041c7e125386c1add7653ec90f5b882ffa82530d (diff) | |
download | ninja-0eb95ff2dbba1fe7213eed2e0140b4d07bda3dd5.tar.gz |
CSS Style - Fix issue when changing value to same value minus units.
-rw-r--r-- | js/panels/css-panel/css-style.reel/css-style.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/panels/css-panel/css-style.reel/css-style.js b/js/panels/css-panel/css-style.reel/css-style.js index 8fd0f156..84841f5b 100644 --- a/js/panels/css-panel/css-style.reel/css-style.js +++ b/js/panels/css-panel/css-style.reel/css-style.js | |||
@@ -292,8 +292,8 @@ exports.CssStyle = Montage.create(Component, { | |||
292 | } else if (value !== '0') { | 292 | } else if (value !== '0') { |
293 | this.units = units; | 293 | this.units = units; |
294 | } | 294 | } |
295 | 295 | ||
296 | this.valueText = value; | 296 | this.valueField.value = value; |
297 | 297 | ||
298 | this.delegate.handleValueChange(rule, property, value, this); | 298 | this.delegate.handleValueChange(rule, property, value, this); |
299 | } | 299 | } |