}
addListener(this.listing, 'click', function(evt) {thisControler.selectCBRange(evt);});
- if (browser.isIE) {
+ if (browser.isIE10max) {
this.listing.ondragstart = function() { window.event.returnValue = false;};
}
};
var targetRow = this.targetRow;
if (targetRow !== null) {
this.noOver = false;
- if (browser.isIE) {document.selection.clear();}
+ if (browser.isIE10max) {document.selection.clear();}
var overRow = getTargetRow(evt);
if (overRow.pos === targetRow.pos) {return;}
};
DropTarget.prototype.highlightTarget = function(evt){
- if (browser.isIE) {document.selection.clear();}
+ if (browser.isIE10max) {document.selection.clear();}
var target = getTargetedObject(evt);
if (this.folderDDControler.targetRow &&
target.nodeName === "A" &&