diff --git a/winamp.js b/winamp.js index 2ef07743..10c0fe0f 100755 --- a/winamp.js +++ b/winamp.js @@ -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;