From 241d1bce78bc7493b52ecfb1ca7ebe6a158e2626 Mon Sep 17 00:00:00 2001 From: Artur Arseniev Date: Thu, 18 Jan 2018 13:51:27 +0100 Subject: [PATCH] Fix `toLoad` property in Editor. Closes #773 --- src/editor/model/Editor.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/editor/model/Editor.js b/src/editor/model/Editor.js index 337652fe1..2ea9de4cf 100644 --- a/src/editor/model/Editor.js +++ b/src/editor/model/Editor.js @@ -50,6 +50,7 @@ module.exports = Backbone.Model.extend({ this.config = c; this.set('Config', c); this.set('modules', []); + this.set('toLoad', []); if (c.el && c.fromElement) this.config.components = c.el.innerHTML;