a/compass-app/platforms/android/assets/www/index.html b/compass-app/platforms/android/assets/www/index.html
1
<!DOCTYPE html>
1
<!DOCTYPE html>
2
<!--
2
<!--
3
    Licensed to the Apache Software Foundation (ASF) under one
3
Licensed to the Apache Software Foundation (ASF) under one
4
    or more contributor license agreements.  See the NOTICE file
4
or more contributor license agreements.  See the NOTICE file
5
    distributed with this work for additional information
5
distributed with this work for additional information
6
    regarding copyright ownership.  The ASF licenses this file
6
regarding copyright ownership.  The ASF licenses this file
7
    to you under the Apache License, Version 2.0 (the
7
to you under the Apache License, Version 2.0 (the
8
    "License"); you may not use this file except in compliance
8
"License"); you may not use this file except in compliance
9
    with the License.  You may obtain a copy of the License at
9
with the License.  You may obtain a copy of the License at
10
10
11
    http://www.apache.org/licenses/LICENSE-2.0
11
http://www.apache.org/licenses/LICENSE-2.0
12
12
13
    Unless required by applicable law or agreed to in writing,
13
Unless required by applicable law or agreed to in writing,
14
    software distributed under the License is distributed on an
14
software distributed under the License is distributed on an
15
    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16
     KIND, either express or implied.  See the License for the
16
KIND, either express or implied.  See the License for the
17
    specific language governing permissions and limitations
17
specific language governing permissions and limitations
18
    under the License.
18
under the License.
19
-->
19
-->
20
<html>
20
<html>
21
    <head>
21
  <head>
22
        <meta charset="utf-8" />
22
      <meta charset="utf-8" />
23
        <meta name="format-detection" content="telephone=no" />
23
      <meta name="format-detection" content="telephone=no" />
24
        <!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
24
      <!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
25
        <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
25
      <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
26
        <link rel="stylesheet" href="css/normalize.css">
26
      <link rel="stylesheet" href="css/normalize.css">
27
         <link rel="stylesheet" href="css/style.css">
27
        <link rel="stylesheet" href="css/style.css">
28
         <link rel="stylesheet" href="css/bootstrap.css">
28
        <link rel="stylesheet" href="css/bootstrap.css">
29
        <title>COMPASS</title>
29
      <title>COMPASS</title>
30
    </head>
30
  </head>
31
    <body>
31
  <body>
32
      
32
33
     <script type="text/x-handlebars">
33
     <script type="text/x-handlebars" id="questions">
34
          <h2>Welcome to Ember.js</h2>
34
          <div class="navbar navbar-default navbar-fixed-top">
35
      
35
          <div class="navbar-inner">
36
          {{outlet}}
36
          <ul class="nav navbar-nav">
37
          <li><a class="brand" href="#">COMPASS SIMPLE DEMO</a></li>
38
          </ul>
39
          </div>
40
          </div>
41
          <div class="container">
42
          <ul>
43
          {{#each controller}}
44
          <li>{{detail}}</li>
45
          {{/each}}
46
          </ul>
47
          </div>
37
        </script>
48
        </script>
38
49
39
      <script type="text/x-handlebars" id="index">
40
          <ul>
41
          {{#each item in model}}
42
            <li>{{item}}</li>
43
          {{/each}}
44
          </ul>
45
      </script>
46
      
47
      
48
    <script src="js/libs/jquery-1.10.2.js"></script>
50
     <script src="js/libs/jquery-1.10.2.js"></script>
49
    <script src="js/libs/handlebars-1.1.2.js"></script>
51
     <script src="js/libs/handlebars-1.1.2.js"></script>
50
    <script src="js/libs/ember-1.3.1.js"></script>
52
     <script src="js/libs/ember-1.3.1.js"></script>
53
      <script src="js/libs/ember-data.js"></script>
54
      <script src="js/libs/localstorage_adapter.js"></script>
51
    <script src="js/libs/bootstrap.js"></script>
55
     <script src="js/libs/bootstrap.js"></script>
52
    <script src="js/app.js"></script>
56
     <script src="js/app.js"></script>
53
    </body>
57
  </body>
54
</html>
58
</html>