Advertisement
Guest User

index.html

a guest
Jul 29th, 2015
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.09 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <!--
  3.    Copyright (c) 2012-2014 Adobe Systems Incorporated. All rights reserved.
  4.  
  5.    Licensed to the Apache Software Foundation (ASF) under one
  6.    or more contributor license agreements.  See the NOTICE file
  7.    distributed with this work for additional information
  8.    regarding copyright ownership.  The ASF licenses this file
  9.    to you under the Apache License, Version 2.0 (the
  10.    "License"); you may not use this file except in compliance
  11.    with the License.  You may obtain a copy of the License at
  12.  
  13.    http://www.apache.org/licenses/LICENSE-2.0
  14.  
  15.    Unless required by applicable law or agreed to in writing,
  16.    software distributed under the License is distributed on an
  17.    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  18.     KIND, either express or implied.  See the License for the
  19.    specific language governing permissions and limitations
  20.    under the License.
  21. -->
  22. <html>
  23.     <head>
  24.         <meta charset="utf-8" />
  25.         <meta name="format-detection" content="telephone=no" />
  26.         <meta name="msapplication-tap-highlight" content="no" />
  27.         <!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
  28.         <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" />
  29.         <link rel="stylesheet" type="text/css" href="css/index.css" />
  30.         <title>TestApp</title>
  31.     </head>
  32.     <body>
  33.         <div class="app">
  34.             <h1>PhoneGap</h1>
  35.             <h4>Hello World</h4>
  36.             <div id="deviceready" class="blink">
  37.                 <p class="event listening">Connecting to Device</p>
  38.                 <p class="event received">Device is Ready</p>
  39.             </div>
  40.         </div>
  41.         <script type="text/javascript" src="cordova.js"></script>
  42.         <script type="text/javascript" src="js/index.js"></script>
  43.         <script type="text/javascript">
  44.             app.initialize();
  45.         </script>
  46.     </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement