0
Fork 0
mirror of https://github.com/fastmail/Squire.git synced 2024-12-22 15:23:29 -05:00

Update Editor.js

This commit is contained in:
Jeremy Roberts 2015-11-20 16:16:39 -08:00
parent 2c9b606b0f
commit 299d45bbb9

View file

@ -57,12 +57,9 @@ function Squire ( doc, config ) {
this.addEventListener( 'mouseup', this._updatePathOnEvent );
// Prevents redirecting dropped files, event can then be captured with editor.addEventListener in the host document
this.addEventListener('dragover', function(event) {
event.preventDefault();
});
this.addEventListener('drop', function(){
event.preventDefault();
});
this.addEventListener('dragover', this.addEventListener('dragover', this.preventDefaultEvent);
this.addEventListener('drop', this.preventDefaultEvent);
this.addEventListener('drop', this.preventDefaultEvent);
win.addEventListener( 'focus', this, false );
win.addEventListener( 'blur', this, false );
@ -186,6 +183,10 @@ proto.getDocument = function () {
return this._doc;
};
proto.preventDefaultEvent = function(event) {
event.preventDefault();
};
// --- Events ---
// Subscribing to these events won't automatically add a listener to the