From c0e5fb35ace87143951d0cbf1c8985a0f3cf8acd Mon Sep 17 00:00:00 2001 From: thomasb Date: Wed, 13 Feb 2008 07:43:33 +0000 Subject: Always use subject col when dragging messages git-svn-id: https://svn.roundcube.net/trunk@1066 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/js/list.js | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) (limited to 'roundcubemail/program/js/list.js') diff --git a/roundcubemail/program/js/list.js b/roundcubemail/program/js/list.js index 3255c1a3f..b9750fa47 100644 --- a/roundcubemail/program/js/list.js +++ b/roundcubemail/program/js/list.js @@ -32,8 +32,8 @@ function rcube_list_widget(list, p) this.rows = []; this.selection = []; + this.subject_col = -1; this.shiftkey = false; - this.multiselect = false; this.draggable = false; this.keyboard = false; @@ -618,7 +618,7 @@ drag_mouse_move: function(e) // get subjects of selectedd messages var names = ''; - var c, node, subject, obj; + var c, i, node, subject, obj; for(var n=0; n12) // only show 12 lines @@ -632,13 +632,20 @@ drag_mouse_move: function(e) obj = this.rows[this.selection[n]].obj; subject = ''; - for(c=0; c 50 ? subject.substring(0, 50)+'...' : subject) + '
'; - break; + if (((node = obj.childNodes[i].firstChild) && (node.nodeType==3 || node.nodeName=='A')) && + (this.subject_col < 0 || (this.subject_col >= 0 && this.subject_col == c))) + { + subject = node.nodeType==3 ? node.data : node.innerHTML; + names += (subject.length > 50 ? subject.substring(0, 50)+'...' : subject) + '
'; + break; + } + c++; } + } } } -- cgit v1.2.3