diff options
Diffstat (limited to 'sca-cpp/trunk/modules/edit/htdocs/graph/index.html')
-rw-r--r-- | sca-cpp/trunk/modules/edit/htdocs/graph/index.html | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sca-cpp/trunk/modules/edit/htdocs/graph/index.html b/sca-cpp/trunk/modules/edit/htdocs/graph/index.html index 105e240389..c02f7b44d0 100644 --- a/sca-cpp/trunk/modules/edit/htdocs/graph/index.html +++ b/sca-cpp/trunk/modules/edit/htdocs/graph/index.html @@ -19,7 +19,9 @@ <html> <head> <title>App Editor</title> -<meta name="viewport" content="width=device-width user-scalable=no initial-scale=1.0"/> +<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0"/> +<meta name="apple-mobile-web-app-capable" content="yes"/> +<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/> <link rel="stylesheet" type="text/css" href="/ui.css"> <script type="text/javascript" src="/util.js"></script> <script type="text/javascript" src="/ui.js"></script> @@ -32,8 +34,6 @@ <div id="graph"></div> <script type="text/javascript"> -ui.loadwidget('menu', '/menu.html'); - /** * Return the current app name. */ @@ -41,6 +41,9 @@ function appname() { return ui.queryParams()['app']; } +// Load the menu bar +ui.loadwidget('menu', '/menu.html?app=' + appname()); + /** * Display the editor for an app. */ |