0
Fork 0
mirror of https://github.com/fastmail/Squire.git synced 2024-12-22 07:13:08 -05:00

fix isDefaultPrevented method ;)

This commit is contained in:
Misha Koryak 2015-05-01 14:10:48 -04:00
parent ed10b03b9f
commit 3da7b19404
3 changed files with 3 additions and 3 deletions

View file

@ -3089,7 +3089,7 @@ proto._onPaste = function ( event ) {
doPaste = false;
},
isDefaultPrevented: function () {
return doPaste;
return !doPaste;
}
};
while ( node = getNextBlock( node ) ) {

File diff suppressed because one or more lines are too long

View file

@ -1665,7 +1665,7 @@ proto._onPaste = function ( event ) {
doPaste = false;
},
isDefaultPrevented: function () {
return doPaste;
return !doPaste;
}
};
while ( node = getNextBlock( node ) ) {