From 6321aff0cf657596facbdfe9d2d84486ea847873 Mon Sep 17 00:00:00 2001 From: Joel Martin Date: Wed, 14 Apr 2010 23:40:29 -0500 Subject: [PATCH] stop routine stops mouseMove events too. --- canvas.js | 1 + 1 file changed, 1 insertion(+) diff --git a/canvas.js b/canvas.js index 4cd54e10..4f2640df 100644 --- a/canvas.js +++ b/canvas.js @@ -101,6 +101,7 @@ stop: function () { document.removeEvents('keyup'); c.removeEvents('mousedown'); c.removeEvents('mouseup'); + c.removeEvents('mousemove'); /* Work around right and middle click browser behaviors */ document.removeEvents('click');