aboutsummaryrefslogtreecommitdiff
path: root/js/components/hottext.reel/hottext.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/components/hottext.reel/hottext.js
parent648ee61ae84216d0236e0dbc211addc13b2cfa3a (diff)
downloadninja-04343eda8c2f870b0da55cfdc8003c99fe1cc4de.tar.gz
Remove trailing spaces
Diffstat (limited to 'js/components/hottext.reel/hottext.js')
-rwxr-xr-xjs/components/hottext.reel/hottext.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/components/hottext.reel/hottext.js b/js/components/hottext.reel/hottext.js
index f49bfc5f..5e362b46 100755
--- a/js/components/hottext.reel/hottext.js
+++ b/js/components/hottext.reel/hottext.js
@@ -214,7 +214,7 @@ var HotText = exports.HotText = Montage.create(SliderBase, {
214 214
215 var dX = clickPoint.x - this._xStart; 215 var dX = clickPoint.x - this._xStart;
216 var dY = clickPoint.y - this._yStart; 216 var dY = clickPoint.y - this._yStart;
217 217
218 var dXAbs = Math.abs(dX); 218 var dXAbs = Math.abs(dX);
219 var dYAbs = Math.abs(dY); 219 var dYAbs = Math.abs(dY);
220 220
@@ -224,7 +224,7 @@ var HotText = exports.HotText = Montage.create(SliderBase, {
224 } 224 }
225 225
226 var incrementVal = dXAbs-4; // otherwise, the first value change will be 5 pixels 226 var incrementVal = dXAbs-4; // otherwise, the first value change will be 5 pixels
227 var multFactor = 1; 227 var multFactor = 1;
228 228
229 if(dXAbs > dYAbs) 229 if(dXAbs > dYAbs)
230 { 230 {