summaryrefslogtreecommitdiff
path: root/program/js/list.js
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-04-09 19:38:50 +0000
committeralecpl <alec@alec.pl>2009-04-09 19:38:50 +0000
commit432a614ab6e01ea5bd8876a267de67a9ee3fd544 (patch)
tree772062997376953c057a07cfdcf0e6b963bd0206 /program/js/list.js
parentf65a7cb8c384e88cf4b21c74e42a03f53b999e40 (diff)
- Fix drag&drop with scrolling on IE (#1485786)
Diffstat (limited to 'program/js/list.js')
-rw-r--r--program/js/list.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/list.js b/program/js/list.js
index 1fe493ca9..7bae7a5f6 100644
--- a/program/js/list.js
+++ b/program/js/list.js
@@ -774,7 +774,7 @@ drag_mouse_move: function(e)
if (this.drag_active && this.draglayer)
{
var pos = rcube_event.get_mouse_pos(e);
- this.draglayer.move(pos.x+20, pos.y-5);
+ this.draglayer.move(pos.x+20, bw.ie ? pos.y-5+document.documentElement.scrollTop : pos.y-5);
this.trigger_event('dragmove', e);
}