Trim whitespace

This commit is contained in:
Jordan Eldredge 2014-11-07 16:15:09 -08:00
parent af4d756790
commit 767f83a730

View file

@ -120,9 +120,9 @@ function Winamp () {
// however the element is 'relatively' positioned so we're using style.left
// parseInt is used to remove the 'px' postfix from the value
var winStartLeft = parseInt(winampElm.style.left || 0,10),
var winStartLeft = parseInt(winampElm.style.left || 0,10),
winStartTop = parseInt(winampElm.style.top || 0,10);
// get starting mouse position
var mouseStartLeft = e.clientX,
mouseStartTop = e.clientY;