1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-15 01:00:17 +00:00

- Improved multiple selection style by blocking browser event

This commit is contained in:
Christophe Dumez 2008-09-28 16:39:39 +00:00
parent eec04761ef
commit e2c7c973fd

@ -82,6 +82,7 @@ var dynamicTable = new Class ({
}.bind(this)); }.bind(this));
} }
tr.addEvent('click', function(e){ tr.addEvent('click', function(e){
e.stop();
if(e.control) { if(e.control) {
// CTRL key was pressed // CTRL key was pressed
if(this.cur.contains(id)) { if(this.cur.contains(id)) {
@ -139,6 +140,7 @@ var dynamicTable = new Class ({
this.cur[0] = id; this.cur[0] = id;
} }
} }
return false;
}.bind(this)); }.bind(this));
tr.injectInside(this.table); tr.injectInside(this.table);