mirror of
https://github.com/fastmail/Squire.git
synced 2025-01-18 12:42:37 -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;
|
doPaste = false;
|
||||||
},
|
},
|
||||||
isDefaultPrevented: function () {
|
isDefaultPrevented: function () {
|
||||||
return doPaste;
|
return !doPaste;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
while ( node = getNextBlock( node ) ) {
|
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;
|
doPaste = false;
|
||||||
},
|
},
|
||||||
isDefaultPrevented: function () {
|
isDefaultPrevented: function () {
|
||||||
return doPaste;
|
return !doPaste;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
while ( node = getNextBlock( node ) ) {
|
while ( node = getNextBlock( node ) ) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue