From bc6015919ad5537d9781c8b917e626ee416df9c8 Mon Sep 17 00:00:00 2001 From: Infocatcher Date: Tue, 28 Aug 2012 16:52:13 +0400 Subject: [PATCH] Convert from Shift-JIS to UTF-8 --- modules/tabbarDNDObserver.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/modules/tabbarDNDObserver.js b/modules/tabbarDNDObserver.js index 80e585eb..60ca6e88 100644 --- a/modules/tabbarDNDObserver.js +++ b/modules/tabbarDNDObserver.js @@ -338,16 +338,16 @@ catch(e) { case sv.kDROP_BEFORE: if (DEBUG) dump(' position = before the tab\n'); /* - [TARGET ] Şdetach from parent, and move + [TARGET ] ↑detach from parent, and move [ ] - [TARGET ] Şattach to the parent of the target, and move + [TARGET ] ↑attach to the parent of the target, and move [ ] - [TARGET ] Şattach to the parent of the target, and move + [TARGET ] ↑attach to the parent of the target, and move [ ] - [TARGET] Şattach to the parent of the target (previous tab), and move + [TARGET] ↑attach to the parent of the target (previous tab), and move */ var prevTab = sv.getPreviousVisibleTab(tab); if (!prevTab) { @@ -374,15 +374,15 @@ catch(e) { case sv.kDROP_AFTER: if (DEBUG) dump(' position = after the tab\n'); /* - [TARGET ] Ğif the target has a parent, attach to it and and move + [TARGET ] ↓if the target has a parent, attach to it and and move - [TARGET] Ğattach to the parent of the target, and move + [TARGET] ↓attach to the parent of the target, and move [ ] - [TARGET ] Ğattach to the parent of the target, and move + [TARGET ] ↓attach to the parent of the target, and move [ ] - [TARGET ] Ğattach to the target, and move + [TARGET ] ↓attach to the target, and move [ ] */ var nextTab = sv.getNextVisibleTab(tab); @@ -397,7 +397,7 @@ catch(e) { info.action = sv.kACTION_MOVE | (info.parent ? sv.kACTION_ATTACH : sv.kACTION_PART ); info.insertBefore = nextTab; /* - [TARGET ] Ğattach dragged tab to the parent of the target as its next sibling + [TARGET ] ↓attach dragged tab to the parent of the target as its next sibling [DRAGGED] */ if (aSourceTab == nextTab) {