editor: first take on plugins, core plugin with breakContent transformation
[fnpeditor.git] / src / editor / entrypoint.js
index 851ced3..ac19d6e 100644 (file)
@@ -1,6 +1,8 @@
 (function() {
     'use strict';
     
+    /* globals requirejs, RNG_BOOTSTRAP_DATA */
+
     requirejs.config({
         baseUrl: '/static/editor/src/editor',
         
         '../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'});
         });
     });