fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
editor: removing version number from main bar
[fnpeditor.git]
/
src
/
editor
/
entrypoint.js
diff --git
a/src/editor/entrypoint.js
b/src/editor/entrypoint.js
index
5e546ef
..
c18bc5a
100644
(file)
--- a/
src/editor/entrypoint.js
+++ b/
src/editor/entrypoint.js
@@
-1,12
+1,15
@@
(function() {
'use strict';
(function() {
'use strict';
+ /* globals requirejs, editor_init */
+
requirejs.config({
requirejs.config({
- baseUrl: '/static/editor/src/editor',
-
paths: {
'fnpjs': '../fnpjs',
paths: {
'fnpjs': '../fnpjs',
- 'libs': '../../libs'
+ 'libs': '../../libs',
+ 'smartxml': '../smartxml',
+ 'wlxml': '../wlxml',
+
},
map: {
},
map: {
@@
-43,12
+46,16
@@
'../fnpjs/runner',
'rng',
'./modules',
'../fnpjs/runner',
'rng',
'./modules',
+ 'plugins/core/core',
'libs/bootstrap'
'libs/bootstrap'
- ], function($, runner, rng, modules) {
+ ], function($, runner, rng, modules
, corePlugin
) {
$(function() {
var app = new runner.Runner(rng, modules);
$(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);
+ }
});
});
});
});