mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-04 08:17:24 -05:00
In SimpleMDE check if trigger exists before call (#9545)
This commit is contained in:
parent
d59536c222
commit
c2d854cfd2
@ -1490,7 +1490,9 @@ function setCommentSimpleMDE($editArea) {
|
||||
}
|
||||
},
|
||||
Backspace: (cm) => {
|
||||
cm.getInputField().trigger('input');
|
||||
if (cm.getInputField().trigger) {
|
||||
cm.getInputField().trigger('input');
|
||||
}
|
||||
cm.execCommand('delCharBefore');
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user