summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/edit/htdocs/app/index.html
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2011-02-02 10:04:44 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2011-02-02 10:04:44 +0000
commitf07b324e6f0f2edb71c4dc1d6b63e8a3743c48a6 (patch)
treef9c59fa81f2d56b87066fc54b9b553ac4c43fd35 /sca-cpp/trunk/modules/edit/htdocs/app/index.html
parentd8df0d6da27ac9c4c61863bc7700db7a871ae8d4 (diff)
Support for wiring and unwiring references.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1066399 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-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);
}