projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
78e2654
)
Only run mouseOver() once per mouseover
author
Michael M Slusarz
<slusarz@curecanti.org>
Sat, 14 Mar 2009 14:46:05 +0000
(08:46 -0600)
committer
Michael M Slusarz
<slusarz@curecanti.org>
Sat, 14 Mar 2009 14:46:05 +0000
(08:46 -0600)
imp/js/src/dragdrop.js
patch
|
blob
|
history
diff --git
a/imp/js/src/dragdrop.js
b/imp/js/src/dragdrop.js
index
74d1fd1
..
2d82038
100644
(file)
--- a/
imp/js/src/dragdrop.js
+++ b/
imp/js/src/dragdrop.js
@@
-323,7
+323,10
@@
Drag = Class.create({
}
if (elt) {
- DragDrop.Drops.get_drop(elt).mouseOver();
+ elt = DragDrop.Drops.get_drop(elt);
+ if (elt != d) {
+ elt.mouseOver();
+ }
} else if (d) {
d.mouseOut();
}