From c07376f345874f579e7d74eb07eb6fe06c73bf37 Mon Sep 17 00:00:00 2001 From: piro Date: Thu, 22 Apr 2010 10:50:14 +0000 Subject: [PATCH] =?UTF-8?q?=E3=83=AA=E3=83=B3=E3=82=AF=E3=82=92=E3=82=BF?= =?UTF-8?q?=E3=83=96=E3=81=AE=E4=B8=8A=E3=81=AB=E3=83=89=E3=83=A9=E3=83=83?= =?UTF-8?q?=E3=82=B0=E3=81=97=E3=81=9F=E6=99=82=E3=80=81=E4=B8=80=E5=AE=9A?= =?UTF-8?q?=E6=99=82=E9=96=93=E5=BE=85=E3=81=A3=E3=81=A6=E3=81=8B=E3=82=89?= =?UTF-8?q?=E3=82=BF=E3=83=96=E3=81=8C=E5=88=87=E3=82=8A=E6=9B=BF=E3=82=8F?= =?UTF-8?q?=E3=82=8B=E3=81=AE=E3=81=A7=E3=81=AF=E3=81=AA=E3=81=8F=E3=80=81?= =?UTF-8?q?=E3=83=87=E3=82=A3=E3=83=AC=E3=82=A4=E7=84=A1=E3=81=97=E3=81=A7?= =?UTF-8?q?=E3=81=99=E3=81=90=E3=81=AB=E5=88=87=E3=82=8A=E6=9B=BF=E3=82=8F?= =?UTF-8?q?=E3=81=A3=E3=81=A6=E3=81=97=E3=81=BE=E3=81=A3=E3=81=A6=E3=81=84?= =?UTF-8?q?=E3=81=9F=E3=81=AE=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@6618 599a83e7-65a4-db11-8015-0010dcdd6dc2 --- content/treestyletab/treestyletab.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/content/treestyletab/treestyletab.js b/content/treestyletab/treestyletab.js index b6c74989..1fbcad39 100644 --- a/content/treestyletab/treestyletab.js +++ b/content/treestyletab/treestyletab.js @@ -665,10 +665,11 @@ try{ if (effects == 'link') { let now = Date.now(); if (!time) { + time = now; if ('mDragTime' in observer) - observer.mDragTime = now; + observer.mDragTime = time; else - observer._dragTime = now; + observer._dragTime = time; } if (now >= time + delay) aTabBrowser.selectedTab = info.target;