From 04343eda8c2f870b0da55cfdc8003c99fe1cc4de Mon Sep 17 00:00:00 2001 From: Kris Kowal Date: Fri, 6 Jul 2012 11:53:10 -0700 Subject: Remove trailing spaces --- .../montage/ui/autocomplete/result-item.reel/result-item.js | 6 +++--- node_modules/montage/ui/flow.reel/flow.js | 10 +++++----- node_modules/montage/ui/input-checkbox.reel/input-checkbox.js | 10 +++++----- 3 files changed, 13 insertions(+), 13 deletions(-) (limited to 'node_modules/montage/ui') diff --git a/node_modules/montage/ui/autocomplete/result-item.reel/result-item.js b/node_modules/montage/ui/autocomplete/result-item.reel/result-item.js index 9a08d4df..1e19bbd3 100644 --- a/node_modules/montage/ui/autocomplete/result-item.reel/result-item.js +++ b/node_modules/montage/ui/autocomplete/result-item.reel/result-item.js @@ -32,9 +32,9 @@ var Montage = require("montage").Montage, DynamicText = require("ui/dynamic-text.reel").DynamicText; exports.ResultItem = Montage.create(DynamicText, { - + textPropertyPath: {value: null}, - + _object: {value: null}, object: { get: function() { @@ -42,7 +42,7 @@ exports.ResultItem = Montage.create(DynamicText, { }, set: function(aValue) { if(aValue) { - this._object = aValue; + this._object = aValue; } if(this._object) { if(this.textPropertyPath) { diff --git a/node_modules/montage/ui/flow.reel/flow.js b/node_modules/montage/ui/flow.reel/flow.js index 365fceb5..579b284e 100644 --- a/node_modules/montage/ui/flow.reel/flow.js +++ b/node_modules/montage/ui/flow.reel/flow.js @@ -440,12 +440,12 @@ var Flow = exports.Flow = Montage.create(Component, { } } }, - + _halfPI: { enumerable: false, value: Math.PI*0.5 }, - + _doublePI: { enumerable: false, value: Math.PI*2 @@ -807,19 +807,19 @@ var Flow = exports.Flow = Montage.create(Component, { distinct: true, value: [] }, - + _cachedPosParameter: { enumerable: false, distinct: true, value: {} }, - + _cachedDrawOffset: { enumerable: false, distinct: true, value: {} }, - + _cachedSlide: { enumerable: false, diff --git a/node_modules/montage/ui/input-checkbox.reel/input-checkbox.js b/node_modules/montage/ui/input-checkbox.reel/input-checkbox.js index d0c32821..b446d7b9 100644 --- a/node_modules/montage/ui/input-checkbox.reel/input-checkbox.js +++ b/node_modules/montage/ui/input-checkbox.reel/input-checkbox.js @@ -30,20 +30,20 @@ POSSIBILITY OF SUCH DAMAGE. /*global require,exports */ var Montage = require("montage").Montage, Component = require("ui/component").Component, - NativeInputCheckbox = require("ui/native/input-checkbox.reel").InputCheckbox; - + NativeInputCheckbox = require("ui/native/input-checkbox.reel").InputCheckbox; + /** * Input Checkbox */ exports.InputCheckbox = Montage.create(NativeInputCheckbox, { - + hasTemplate: {value: true}, - + didSetElement: { value: function() { NativeInputCheckbox.didSetElement.call(this); this['class'] = (this['class'] || '') + ' montage-inputCheckbox'; } } - + }); -- cgit v1.2.3