Ticket #906: drag.patch
| File drag.patch, 0.5 kB (added by bartvde, 1 year ago) |
|---|
-
Drag.js
old new 77 77 this.dragging = true; 78 78 this.callback("move", [evt.xy]); 79 79 if(!this.oldOnselectstart) { 80 this.oldOnselectstart = document.onselectstart;80 this.oldOnselectstart = (document.onselectstart) ? document.onselectstart : function() { return true; }; 81 81 document.onselectstart = function() {return false;} 82 82 } 83 83 }
