pixtur
xl
tino
js/listFunctions.js
/** * prevent normal links from being overwritten by row toggling */ $('table.list a').click ( function(e) { document.location.href= this.href; return false } );
from js/listFunctions.js
$('table.list a').click(function(e) { if( e.ctrlKey ) { document.location.href = gBrowser.addTab(this.href); return false; } else { document.location.href= this.href; return false; } });
Comment
Details (Wiki format)
Please copy the text