replace require with Dynamic Imports

This commit is contained in:
grafixeyehero 2020-06-11 21:52:00 +03:00
parent bb5d37f3e7
commit 2d53cb5f85
2 changed files with 2 additions and 4 deletions

View File

@ -201,8 +201,7 @@ export class editor {
currentOptions = options;
currentResolve = resolve;
hasChanges = false;
// TODO: remove require
require(['text!./components/mediaLibraryCreator/mediaLibraryCreator.template.html'], template => {
import('text!./components/mediaLibraryCreator/mediaLibraryCreator.template.html').then(({default: template}) => {
const dlg = dialogHelper.createDialog({
size: 'small',
modal: false,

View File

@ -216,8 +216,7 @@ export class editor {
currentOptions = options;
currentDeferred = deferred;
hasChanges = false;
// TODO: remove require
require(['text!./components/mediaLibraryEditor/mediaLibraryEditor.template.html'], template => {
import('text!./components/mediaLibraryEditor/mediaLibraryEditor.template.html').then(({default: template}) => {
const dlg = dialogHelper.createDialog({
size: 'small',
modal: false,