fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
canvas: Fix getting invalidated references to wlxmlNodes after node tag change
[fnpeditor.git]
/
src
/
editor
/
entrypoint.js
diff --git
a/src/editor/entrypoint.js
b/src/editor/entrypoint.js
index
851ced3
..
ac19d6e
100644
(file)
--- a/
src/editor/entrypoint.js
+++ b/
src/editor/entrypoint.js
@@
-1,6
+1,8
@@
(function() {
'use strict';
(function() {
'use strict';
+ /* globals requirejs, RNG_BOOTSTRAP_DATA */
+
requirejs.config({
baseUrl: '/static/editor/src/editor',
requirejs.config({
baseUrl: '/static/editor/src/editor',
@@
-46,11
+48,13
@@
'../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);
app.setBootstrappedData('data', RNG_BOOTSTRAP_DATA);
$(function() {
var app = new runner.Runner(rng, modules);
app.setBootstrappedData('data', RNG_BOOTSTRAP_DATA);
+ app.registerPlugin(corePlugin);
app.start({rootSelector:'#editor_root'});
});
});
app.start({rootSelector:'#editor_root'});
});
});