Partially disable buggy ff <64 table resizing handles in note-editor
Unfortunately the first opened note will still have the handles.
This commit is contained in:
parent
3f4030ff80
commit
f877476c1a
3 changed files with 6 additions and 2 deletions
|
@ -95,6 +95,10 @@ class EditorInstance {
|
|||
|
||||
let note = this._item.note;
|
||||
|
||||
// TODO: From Firefox 64 this is no longer necessary
|
||||
this._iframeWindow.document.execCommand('enableObjectResizing', false, 'false');
|
||||
this._iframeWindow.document.execCommand('enableInlineTableEditing', false, 'false');
|
||||
|
||||
this._postMessage({
|
||||
action: 'init',
|
||||
value: this._state || this._item.note,
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 7565a117a702023dad773e832e7f805dd37f1df2
|
||||
Subproject commit 0d84a3ec1028ac8f224a9167d44c76c35523e8eb
|
|
@ -1 +1 @@
|
|||
Subproject commit 04f474c5e2eee49e2837cd4106c3630674abe30c
|
||||
Subproject commit 9ba10b2e8e942a54e2652cc438a5da04f921556b
|
Loading…
Reference in a new issue