aboutsummaryrefslogtreecommitdiff
path: root/js/panels/Timeline/Tween.reel/Tween.js
diff options
context:
space:
mode:
authorKris Kowal2012-07-06 11:53:10 -0700
committerKris Kowal2012-07-06 15:01:48 -0700
commit04343eda8c2f870b0da55cfdc8003c99fe1cc4de (patch)
tree0a6048889b65bb16ff58822e55bc1346e9eb07bd /js/panels/Timeline/Tween.reel/Tween.js
parent648ee61ae84216d0236e0dbc211addc13b2cfa3a (diff)
downloadninja-04343eda8c2f870b0da55cfdc8003c99fe1cc4de.tar.gz
Remove trailing spaces
Diffstat (limited to 'js/panels/Timeline/Tween.reel/Tween.js')
-rw-r--r--js/panels/Timeline/Tween.reel/Tween.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/js/panels/Timeline/Tween.reel/Tween.js b/js/panels/Timeline/Tween.reel/Tween.js
index 6dcbf74b..c451caa7 100644
--- a/js/panels/Timeline/Tween.reel/Tween.js
+++ b/js/panels/Timeline/Tween.reel/Tween.js
@@ -165,7 +165,7 @@ var Tween = exports.Tween = Montage.create(Component, {
165 this._isTweenAnimated = value; 165 this._isTweenAnimated = value;
166 } 166 }
167 }, 167 },
168 168
169 _isDragging: { 169 _isDragging: {
170 value: false 170 value: false
171 }, 171 },
@@ -177,9 +177,9 @@ var Tween = exports.Tween = Montage.create(Component, {
177 set:function (newVal) { 177 set:function (newVal) {
178 this._isDragging = newVal; 178 this._isDragging = newVal;
179 } 179 }
180 180
181 }, 181 },
182 182
183 _easing: { 183 _easing: {
184 value: "none" 184 value: "none"
185 }, 185 },
@@ -191,7 +191,7 @@ var Tween = exports.Tween = Montage.create(Component, {
191 set:function (newVal) { 191 set:function (newVal) {
192 this._easing = newVal; 192 this._easing = newVal;
193 } 193 }
194 194
195 }, 195 },
196 196
197 draw:{ 197 draw:{
@@ -267,11 +267,11 @@ var Tween = exports.Tween = Montage.create(Component, {
267 this.parentComponent.parentComponent.updateKeyframeRule(); 267 this.parentComponent.parentComponent.updateKeyframeRule();
268 this.isTweenAnimated = true; 268 this.isTweenAnimated = true;
269 } 269 }
270 270
271 if (eventDetail.source === "translateTool") { 271 if (eventDetail.source === "translateTool") {
272 var arrMat = eventDetail.data.value[0].properties.mat, 272 var arrMat = eventDetail.data.value[0].properties.mat,
273 strTweenProperty = "perspective(1400) matrix3d(" + arrMat.join() + ")"; 273 strTweenProperty = "perspective(1400) matrix3d(" + arrMat.join() + ")";
274 274
275 this.tweenedProperties["-webkit-transform"] = strTweenProperty; 275 this.tweenedProperties["-webkit-transform"] = strTweenProperty;
276 this.parentComponent.parentComponent.updateKeyframeRule(); 276 this.parentComponent.parentComponent.updateKeyframeRule();
277 this.isTweenAnimated = true; 277 this.isTweenAnimated = true;