From 68b6a9e8e49fcd17b5e71cb6c0162fdbd39b44f3 Mon Sep 17 00:00:00 2001 From: svncommit <devs@roundcube.net> Date: Fri, 19 Oct 2007 08:24:04 -0400 Subject: [PATCH] - Enable single-selection toggling in JS list object - Use row id's instead of folder names in folder renaming/moving - Fix some smaller errors in folder renaming/moving --- program/js/list.js | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/program/js/list.js b/program/js/list.js index ccc0dda..be7b02d 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -37,6 +37,7 @@ this.multiselect = false; this.draggable = false; this.keyboard = false; + this.toggleselect = false; this.dont_select = false; this.drag_active = false; @@ -347,8 +348,11 @@ if (!this.selection.length) this.shift_start = null; + if (this.toggleselect && this.last_selected==id) + this.highlight_row(id, true); + this.last_selected = id; - this.set_classname(this.rows[id].obj, 'focused', true); + this.set_classname(this.rows[id].obj, 'focused', true); }, -- Gitblit v1.9.1