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:
parent
ed10b03b9f
commit
3da7b19404
3 changed files with 3 additions and 3 deletions
|
@ -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
|
@ -1665,7 +1665,7 @@ proto._onPaste = function ( event ) {
|
|||
doPaste = false;
|
||||
},
|
||||
isDefaultPrevented: function () {
|
||||
return doPaste;
|
||||
return !doPaste;
|
||||
}
|
||||
};
|
||||
while ( node = getNextBlock( node ) ) {
|
||||
|
|
Loading…
Reference in a new issue