hi,
does anyone see a syntax error in the following code:
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) Assets.select(d);
}.bind(this));
}
}
i dont but the IE finds an error there!
can anyone help?
does anyone see a syntax error in the following code:
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) Assets.select(d);
}.bind(this));
}
}
i dont but the IE finds an error there!
can anyone help?