diff options
Diffstat (limited to 'js/components/ui/property-control.reel')
-rwxr-xr-x | js/components/ui/property-control.reel/property-control.html | 2 | ||||
-rwxr-xr-x | js/components/ui/property-control.reel/property-control.js | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/js/components/ui/property-control.reel/property-control.html b/js/components/ui/property-control.reel/property-control.html index 549925b5..bd0b49b7 100755 --- a/js/components/ui/property-control.reel/property-control.html +++ b/js/components/ui/property-control.reel/property-control.html | |||
@@ -1,4 +1,4 @@ | |||
1 | <!DOCTYPE HTML> | 1 | <!doctype html> |
2 | <!-- <copyright> | 2 | <!-- <copyright> |
3 | Copyright (c) 2012, Motorola Mobility, Inc | 3 | Copyright (c) 2012, Motorola Mobility, Inc |
4 | All Rights Reserved. | 4 | All Rights Reserved. |
diff --git a/js/components/ui/property-control.reel/property-control.js b/js/components/ui/property-control.reel/property-control.js index 2f91491f..49ee7334 100755 --- a/js/components/ui/property-control.reel/property-control.js +++ b/js/components/ui/property-control.reel/property-control.js | |||
@@ -170,15 +170,15 @@ var PropertyControl = exports.PropertyControl = Montage.create(Component, { | |||
170 | }, | 170 | }, |
171 | 171 | ||
172 | handleEvent: | 172 | handleEvent: |
173 | { | 173 | { |
174 | value:function(event) | 174 | value:function(event) |
175 | { | 175 | { |
176 | if(event.wasSetByCode) { | 176 | if(event.wasSetByCode) { |
177 | return; | 177 | return; |
178 | } | 178 | } |
179 | this._dispatchPropEvent(event); | 179 | this._dispatchPropEvent(event); |
180 | } | 180 | } |
181 | }, | 181 | }, |
182 | 182 | ||
183 | _dispatchPropEvent: { | 183 | _dispatchPropEvent: { |
184 | value: function(event) { | 184 | value: function(event) { |
@@ -196,7 +196,7 @@ var PropertyControl = exports.PropertyControl = Montage.create(Component, { | |||
196 | propEvent.propertyLabel = this.label; | 196 | propEvent.propertyLabel = this.label; |
197 | propEvent.propertyValue = event.currentTarget[this._prop]; | 197 | propEvent.propertyValue = event.currentTarget[this._prop]; |
198 | propEvent.propertyEvent = event; | 198 | propEvent.propertyEvent = event; |
199 | 199 | ||
200 | this.dispatchEvent(propEvent); | 200 | this.dispatchEvent(propEvent); |
201 | } | 201 | } |
202 | }, | 202 | }, |