(function() {
'use strict';
+ /* globals requirejs, editor_init */
+
requirejs.config({
- baseUrl: '/static/editor/src/editor',
-
paths: {
'fnpjs': '../fnpjs',
'libs': '../../libs',
'../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);
+ }
});
});