diff options
Diffstat (limited to '')
-rw-r--r-- | sca-cpp/trunk/modules/edit/htdocs/dash/index.html (renamed from sca-cpp/trunk/modules/edit/htdocs/main/index.html) | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sca-cpp/trunk/modules/edit/htdocs/main/index.html b/sca-cpp/trunk/modules/edit/htdocs/dash/index.html index 6242309ab9..0abb384d75 100644 --- a/sca-cpp/trunk/modules/edit/htdocs/main/index.html +++ b/sca-cpp/trunk/modules/edit/htdocs/dash/index.html @@ -19,16 +19,23 @@ <html> <head> <title>App Dashboard</title> +<meta name="viewport" content="width=device-width user-scalable=no initial-scale=1.0"/> <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> </head> <body> +<div id="menu"></div> + <h1>Welcome to your App Dashboard!</h1> <div id="dashboard"></div> + +<iframe id="menuFrame" src="/menu.html"></iframe> <iframe id="dashboardFrame" src="dashboard.html"></iframe> <script type="text/javascript"> +ui.bindwidget('menuFrame', 'menu'); + // Display the dashboard widget ui.bindwidget('dashboardFrame', 'dashboard'); </script> |