X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/efe36f4f1b5df351eeb4d40a54c3900cf9a7079b..8f3efc2235f836dd2b624d569d97a7ae0dad77ff:/src/editor/entrypoint.js diff --git a/src/editor/entrypoint.js b/src/editor/entrypoint.js index 5e546ef..ac19d6e 100644 --- a/src/editor/entrypoint.js +++ b/src/editor/entrypoint.js @@ -1,12 +1,17 @@ (function() { 'use strict'; + /* globals requirejs, RNG_BOOTSTRAP_DATA */ + requirejs.config({ baseUrl: '/static/editor/src/editor', paths: { 'fnpjs': '../fnpjs', - 'libs': '../../libs' + 'libs': '../../libs', + 'smartxml': '../smartxml', + 'wlxml': '../wlxml', + }, map: { @@ -43,11 +48,13 @@ '../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.registerPlugin(corePlugin); app.start({rootSelector:'#editor_root'}); }); });