Commit d9ba5235 authored by olau@iola.dk's avatar olau@iola.dk

Return false in the mousewheel handler

git-svn-id: https://flot.googlecode.com/svn/trunk@201 1e0a6537-2640-0410-bfb7-f154510ff394
parent b0b1c442
...@@ -114,6 +114,7 @@ Licensed under the MIT License ~ http://threedubmedia.googlecode.com/files/MIT-L ...@@ -114,6 +114,7 @@ Licensed under the MIT License ~ http://threedubmedia.googlecode.com/files/MIT-L
eventHolder.mousewheel(function (e, delta) { eventHolder.mousewheel(function (e, delta) {
clickHandler(e, delta < 0); clickHandler(e, delta < 0);
return false;
}); });
} }
if (o.pan.interactive) { if (o.pan.interactive) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment