X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/71b7ba4d1d17adc39165914016fa892671cc4316..3182d8f5a1642eeac079576083eea86f09c5751a:/src/editor/entrypoint.js diff --git a/src/editor/entrypoint.js b/src/editor/entrypoint.js index 851ced3..528952b 100644 --- a/src/editor/entrypoint.js +++ b/src/editor/entrypoint.js @@ -1,6 +1,8 @@ (function() { 'use strict'; + /* globals requirejs, editor_init */ + requirejs.config({ baseUrl: '/static/editor/src/editor', @@ -46,12 +48,16 @@ '../fnpjs/runner', 'rng', './modules', + 'plugins/core/core', 'libs/bootstrap' - ], function($, runner, rng, modules) { + ], function($, runner, rng, modules, corePlugin) { $(function() { var app = new runner.Runner(rng, modules); - app.setBootstrappedData('data', RNG_BOOTSTRAP_DATA); - app.start({rootSelector:'#editor_root'}); + app.registerPlugin(corePlugin); + + if(typeof editor_init !== 'undefined') { + editor_init(app); + } }); });