Changeset 21168d2 in github
- Timestamp:
- Mar 31, 2008 10:49:54 AM (5 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 65444ba
- Parents:
- 1b4d732
- Location:
- program/js
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
program/js/app.js
r0ed26549 r21168d2 134 134 this.message_list.addEventListener('select', function(o){ p.msglist_select(o); }); 135 135 this.message_list.addEventListener('dragstart', function(o){ p.drag_active = true; }); 136 this.message_list.addEventListener('dragstart', function(o){ p.drag_active = true; if (p.preview_timer) clearTimeout(p.preview_timer); }); 136 137 this.message_list.addEventListener('dragend', function(o){ p.drag_active = false; }); 137 138 … … 1139 1140 1140 1141 // start timer for message preview (wait for double click) 1141 if (selected && this.env.contentframe )1142 if (selected && this.env.contentframe && !list.multi_selecting) 1142 1143 this.preview_timer = setTimeout(function(){ ref.msglist_get_preview(); }, this.dblclick_time + 10); 1143 1144 else if (this.env.contentframe) -
program/js/list.js
rbf36a9a r21168d2 36 36 this.shiftkey = false; 37 37 this.multiselect = false; 38 this.multi_selecting = false; 38 39 this.draggable = false; 39 40 this.keyboard = false; … … 320 321 this.shift_start = id; 321 322 this.highlight_row(id, false); 323 this.multi_selecting = false; 322 324 } 323 325 else … … 342 344 break; 343 345 } 346 this.multi_selecting = true; 344 347 } 345 348
Note: See TracChangeset
for help on using the changeset viewer.
