diff options
Diffstat (limited to 'sca-cpp/trunk/modules/edit/htdocs/main.html')
-rw-r--r-- | sca-cpp/trunk/modules/edit/htdocs/main.html | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/sca-cpp/trunk/modules/edit/htdocs/main.html b/sca-cpp/trunk/modules/edit/htdocs/main.html index 65909c1a94..819af53c52 100644 --- a/sca-cpp/trunk/modules/edit/htdocs/main.html +++ b/sca-cpp/trunk/modules/edit/htdocs/main.html @@ -24,9 +24,10 @@ </head> <body> -<div style="position: absolute; top: 0px; left: 0px; right: 0px;"> +<div id="bodydiv" style="position: absolute; top: 0px; left: 0px; right: 0px;"> -<div>This module implements simple tools to help you create Tuscany apps.</div> +<div>This module implements simple App editing tools to help you create Tuscany apps.</div> +<div>The user interface is minimalistic, by design.</div> <br/> <h2>App Dashboard</h2> @@ -36,12 +37,16 @@ <p>Try the <a href="app/?app=store" target="_parent">App Editor</a> to edit an app.</p> <h2>Composition Editor</h2> -<p>Try the <a href="graph/?app=store" target="_parent">Composition Editor</a> to compose an app.</p> +<p>Try the <a href="graph/?app=store" target="_parent">Composition Editor</a> to compose the logic of an app.</p> <h2>Page Editor</h2> <p>Try the <a href="page/?app=store" target="_parent">Page Editor</a> to draw an app page.</p> </div> +<script type="text/javascript"> +if (ui.isIE()) $('bodydiv').style.right = -20; +</script> + </body> </html> |