editor: core plugin - edumed - first take on order exercise
[fnpeditor.git] / src / editor / entrypoint.js
index 5e546ef..b723517 100644 (file)
@@ -1,12 +1,15 @@
 (function() {
     'use strict';
     
+    /* globals requirejs, editor_init */
+
     requirejs.config({
-        baseUrl: '/static/editor/src/editor',
-        
         paths: {
             'fnpjs': '../fnpjs',
-            'libs': '../../libs'
+            'libs': '../../libs',
+            'smartxml': '../smartxml',
+            'wlxml': '../wlxml',
+
         },
 
         map: {
@@ -16,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'
                 }
         },
 
             '../../libs/backbone-min': {
                 exports: 'Backbone',
                 deps: ['libs/jquery', 'libs/underscore']
-            }
+            },
+            '../../libs/ace/ace': {
+                exports: 'ace'
+            },
         }
 
     });
         '../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);
+            }
         });
     });