Fix problem with crosshair not respecting locking on mouseout (fix by Lau Bech Lauritzen).

git-svn-id: https://flot.googlecode.com/svn/trunk@247 1e0a6537-2640-0410-bfb7-f154510ff394
pull/1/head
olau@iola.dk 16 years ago
parent e131b77618
commit e74c4f694b

@ -42,6 +42,8 @@ Bug fixes:
- Check the selection passed into setSelection in the selection
plugin, to guard against errors when synchronizing plots (fix by Lau
Bech Lauritzen).
- Fix bug in crosshair code with mouseout resetting the crosshair even
if it is locked (fix by Lau Bech Lauritzen).
Flot 0.6
--------

@ -95,6 +95,9 @@ The plugin also adds four public methods:
return;
eventHolder.mouseout(function () {
if (crosshair.locked)
return;
if (crosshair.x != -1) {
crosshair.x = -1;
plot.triggerRedrawOverlay();

Loading…
Cancel
Save