From 946657d2fbff042af53fabb5b82b1ccec3838786 Mon Sep 17 00:00:00 2001 From: Thomas Bruederli <thomas@roundcube.net> Date: Wed, 04 Sep 2013 05:21:56 -0400 Subject: [PATCH] Backported the treelist refactoring to 0.9 --- skins/larry/ui.js | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/skins/larry/ui.js b/skins/larry/ui.js index 19f8a51..d288760 100644 --- a/skins/larry/ui.js +++ b/skins/larry/ui.js @@ -1,7 +1,7 @@ /** * Roundcube functions for default skin interface * - * Copyright (c) 2013, The Roundcube Dev Team + * Copyright (c) 2011, The Roundcube Dev Team * * The contents are subject to the Creative Commons Attribution-ShareAlike * License. It is allowed to copy, distribute, transmit and to adapt the work @@ -947,11 +947,11 @@ this.delay = 500; this.top - .mouseenter(function() { if (rcmail.drag_active) ref.ts = window.setTimeout(function() { ref.scroll('down'); }, ref.delay); }) + .mouseenter(function() { ref.ts = window.setTimeout(function() { ref.scroll('down'); }, ref.delay); }) .mouseout(function() { if (ref.ts) window.clearTimeout(ref.ts); }); this.bottom - .mouseenter(function() { if (rcmail.drag_active) ref.ts = window.setTimeout(function() { ref.scroll('up'); }, ref.delay); }) + .mouseenter(function() { ref.ts = window.setTimeout(function() { ref.scroll('up'); }, ref.delay); }) .mouseout(function() { if (ref.ts) window.clearTimeout(ref.ts); }); this.scroll = function(dir) -- Gitblit v1.9.1