From 3b6d97305c6ce575c1dd8d32756972ea44ba73af Mon Sep 17 00:00:00 2001 From: Florian Zeitz Date: Wed, 17 Mar 2010 19:55:47 +0100 Subject: [PATCH] Remove wrong "var"s * Remove accidentally added "var"s --- scripts/basic.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/basic.js b/scripts/basic.js index c1ba6cb..7038a9a 100644 --- a/scripts/basic.js +++ b/scripts/basic.js @@ -443,12 +443,12 @@ function stopDrag(eve) { dragElement = null; } -var onunload = function() { +onunload = function() { if (connection) { connection.disconnect(); } }; -var onmousemove = doDrag; -var onmouseup = stopDrag; +onmousemove = doDrag; +onmouseup = stopDrag; -- 2.39.2