X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/8f3efc2235f836dd2b624d569d97a7ae0dad77ff..e08ad28198c90ee22657ccc692f4beb161cdf108:/src/editor/entrypoint.js?ds=sidebyside

diff --git a/src/editor/entrypoint.js b/src/editor/entrypoint.js
index ac19d6e..c18bc5a 100644
--- a/src/editor/entrypoint.js
+++ b/src/editor/entrypoint.js
@@ -1,11 +1,9 @@
 (function() {
     'use strict';
     
-    /* globals requirejs, RNG_BOOTSTRAP_DATA */
+    /* globals requirejs, editor_init */
 
     requirejs.config({
-        baseUrl: '/static/editor/src/editor',
-        
         paths: {
             'fnpjs': '../fnpjs',
             'libs': '../../libs',
@@ -53,9 +51,11 @@
     ], function($, runner, rng, modules, corePlugin) {
         $(function() {
             var app = new runner.Runner(rng, modules);
-            app.setBootstrappedData('data', RNG_BOOTSTRAP_DATA);
             app.registerPlugin(corePlugin);
-            app.start({rootSelector:'#editor_root'});
+
+            if(typeof editor_init !== 'undefined') {
+                editor_init(app);
+            }
         });
     });