summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/edit/htdocs/app/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'sca-cpp/trunk/modules/edit/htdocs/app/index.html')
-rw-r--r--sca-cpp/trunk/modules/edit/htdocs/app/index.html17
1 files changed, 7 insertions, 10 deletions
diff --git a/sca-cpp/trunk/modules/edit/htdocs/app/index.html b/sca-cpp/trunk/modules/edit/htdocs/app/index.html
index f5f11137ec..f79229d17e 100644
--- a/sca-cpp/trunk/modules/edit/htdocs/app/index.html
+++ b/sca-cpp/trunk/modules/edit/htdocs/app/index.html
@@ -29,20 +29,18 @@
<body>
<div id="menu"></div>
-<br/>
-<h1><span id="title"></span></h1>
-</br>
-
-<div id="app"></div>
-
<script type="text/javascript">
-/**
- * The current app name.
- */
+
+// Get the app name
var appname = ui.queryParams()['app'];
// Load the menu bar
ui.loadwidget('menu', '/menu.html?app=' + appname);
+</script>
+
+<div id="app"></div>
+
+<script type="text/javascript">
/**
* Display the page editor for an app.
@@ -50,7 +48,6 @@ ui.loadwidget('menu', '/menu.html?app=' + appname);
function editapp(name) {
if (isNil(name))
return;
- $('title').innerHTML = 'Editing: ' + name;
ui.loadiframe('app', 'app.html?app=' + name);
}