diff --git a/demo/boot.js b/demo/boot.js
index 369d216d..8cb3e6e3 100644
--- a/demo/boot.js
+++ b/demo/boot.js
@@ -45,7 +45,7 @@ var setupPlugins = function(config, callback) {
// packages: ["ace"]
// };
config.pluginDirs["../plugins"] = {
- packages: ["pilot"]
+ packages: ["pilot", "cockpit"]
};
var knownPlugins = [];
@@ -109,7 +109,10 @@ var setupPlugins = function(config, callback) {
}
}
}
-
+console.log(JSON.stringify({
+ packagePaths: pluginPackageInfo,
+ paths: paths
+ }));
require({
packagePaths: pluginPackageInfo,
paths: paths
diff --git a/demo/demo_startup.js b/demo/demo_startup.js
index 8c2ba458..9ce6b585 100644
--- a/demo/demo_startup.js
+++ b/demo/demo_startup.js
@@ -150,7 +150,7 @@ exports.launch = function(env) {
function onResize() {
container.style.width = (document.documentElement.clientWidth - 4) + "px";
- container.style.height = (document.documentElement.clientHeight - 55 - 4) + "px";
+ container.style.height = (document.documentElement.clientHeight - 55 - 4 - 23) + "px";
env.editor.resize();
};
diff --git a/editor.html b/editor.html
index bedc4d8d..ba91335a 100644
--- a/editor.html
+++ b/editor.html
@@ -47,6 +47,11 @@
display: none;
}
+ #cockpit {
+ position: absolute;
+ width: 100%;
+ bottom: 0;
+ }
-
+
+
+