X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/0990bc1dc7fad5165148a8993901138de9e22d0e..8f2a3dc4b0578752bea210dee8ce2ccc2db7318c:/src/editor/entrypoint.js diff --git a/src/editor/entrypoint.js b/src/editor/entrypoint.js index 20460b3..b723517 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', @@ -21,7 +19,7 @@ 'libs/underscore': '../../libs/underscore-min', 'libs/bootstrap': '../../libs/bootstrap/js/bootstrap.min', 'libs/backbone': '../../libs/backbone-min', - + 'libs/ace/ace': '../../libs/ace/ace' } }, @@ -38,7 +36,10 @@ '../../libs/backbone-min': { exports: 'Backbone', deps: ['libs/jquery', 'libs/underscore'] - } + }, + '../../libs/ace/ace': { + exports: 'ace' + }, } }); @@ -48,12 +49,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); + } }); });