We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 122caf8 commit 3fb150dCopy full SHA for 3fb150d
src/Umbraco.Web.UI.Client/src/common/services/editor.service.js
@@ -214,13 +214,14 @@ When building a custom infinite editor view you can use the same components as a
214
* Method to tell editors that they are begin blurred.
215
*/
216
function blur() {
217
-
218
- /* keyboard shortcuts will be overwritten by the new infinite editor
+ if (isEnabled === true) {
+ /* keyboard shortcuts will be overwritten by the new infinite editor
219
so we need to store the shortcuts for the current editor so they can be rebound
220
when the infinite editor closes
221
222
- unbindKeyboardShortcuts();
223
- isEnabled = false;
+ unbindKeyboardShortcuts();
+ isEnabled = false;
224
+ }
225
}
226
/**
227
* @ngdoc method
0 commit comments