[Build] Clarify expressions

...to satisfy JSHint.
This commit is contained in:
Victor Woeltjen 2016-03-04 10:49:22 -08:00
parent 91bf98b38d
commit dda0628621

View File

@ -117,13 +117,10 @@ define(
style: function (zoom) { style: function (zoom) {
return { return {
left: zoom.toPixels(dragHandler.start(id)) + left: (zoom.toPixels(dragHandler.start(id)) +
Constants.HANDLE_WIDTH + Constants.HANDLE_WIDTH) + 'px',
'px', width: (zoom.toPixels(dragHandler.duration(id)) -
width: zoom.toPixels(dragHandler.duration(id)) - Constants.HANDLE_WIDTH * 2) + 'px'
Constants.HANDLE_WIDTH * 2
+ 'px'
//cursor: initialStart === undefined ? 'grab' : 'grabbing'
}; };
} }
}; };