Merge pull request #3301 from tchak/fix-js-error
Only initialize champs editor if is present on page
This commit is contained in:
commit
83bba82c76
1 changed files with 7 additions and 1 deletions
|
@ -10,6 +10,12 @@ Vue.component('DraggableItem', DraggableItem);
|
|||
|
||||
addEventListener('DOMContentLoaded', () => {
|
||||
const el = document.querySelector('#champs-editor');
|
||||
if (el) {
|
||||
initEditor(el);
|
||||
}
|
||||
});
|
||||
|
||||
function initEditor(el) {
|
||||
const { directUploadsUrl, dragIconUrl } = el.dataset;
|
||||
|
||||
const state = {
|
||||
|
@ -48,7 +54,7 @@ addEventListener('DOMContentLoaded', () => {
|
|||
this.updateAll = updateAll;
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function createUpdateFunctions(app, isAnnotation) {
|
||||
let isSaving = false;
|
||||
|
|
Loading…
Reference in a new issue