You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by mw...@apache.org on 2012/07/13 08:15:41 UTC

[1/14] git commit: Move JavaScript to the bottom.

Updated Branches:
  refs/heads/hello-cordova [created] 672b08640


Move JavaScript to the bottom.


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/commit/672b0864
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/tree/672b0864
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/diff/672b0864

Branch: refs/heads/hello-cordova
Commit: 672b08640988e7fb7891aeb6d1cfc439cc68d226
Parents: e464e04
Author: Michael Brooks <mi...@michaelbrooks.ca>
Authored: Thu Jul 12 23:15:06 2012 -0700
Committer: Michael Brooks <mi...@michaelbrooks.ca>
Committed: Thu Jul 12 23:15:06 2012 -0700

----------------------------------------------------------------------
 www/index.html |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/blob/672b0864/www/index.html
----------------------------------------------------------------------
diff --git a/www/index.html b/www/index.html
index 3bc5f9c..89ecf35 100644
--- a/www/index.html
+++ b/www/index.html
@@ -3,13 +3,14 @@
     <head>
         <title>Hello Cordova</title>
         <link rel="stylesheet" type="text/css" href="css/index.css" />
-        <script type="text/javascript" src="js/index.js"></script>
-        <script type="text/javascript">
-            app.initialize();
-        </script>
     </head>
     <body>
         <h1></h1>
         <p>deviceready... <span id="deviceready">initializing</span></p>
+
+        <script type="text/javascript" src="js/index.js"></script>
+        <script type="text/javascript">
+            app.initialize();
+        </script>
     </body>
 </html>