hi,


does anyone see a js sintax error in this if statement


if (event.shiftKey) {
var sel = this.getSelected();
if (sel.length>0) {
var first = sel[0], last = sel[sel.length-1];
var mark = false;
this.entries.each( function(d, i) {
if (d==first) mark = true;
if (d==last) throw $break;
if (mark && !this.selected[i]) Assets.select(d);
}.bind(this));
}
}



my debuger sais there is one and IE displays one as well and the script doesnt function