Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianj98 committed Jan 26, 2014
1 parent b80adae commit 678ba45
Showing 1 changed file with 30 additions and 20 deletions.
50 changes: 30 additions & 20 deletions index.html
@@ -1,8 +1,28 @@
<!DOCTYPE html>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->

<html> <html>
<head> <head>
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, maximum-scale=1, user-scalable=no"/> <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, maximum-scale=1, user-scalable=no"/>


<title>Meteor Cordova Hello World</title> <title>Cordova Meteor Hello world</title>


<link rel="stylesheet" type="text/css" href="css/meteor.cordova.css"> <link rel="stylesheet" type="text/css" href="css/meteor.cordova.css">


Expand All @@ -13,32 +33,22 @@


<!--<script charset="utf-8" type="text/javascript" src="meteor.cordova.push.js"></script>--> <!--<script charset="utf-8" type="text/javascript" src="meteor.cordova.push.js"></script>-->


<script type="text/javascript">
shellVersion = '0.0.1';

document.addEventListener('deviceready', function() {


meteor = new MeteorCordova('http://live.peoplenook.com', {
// This shell version
version: '0.0.1',
// Do we rely on appcache?
appcache: false
});


meteor.load(function(error) { </head>
if (error) { <body>
alert('error: ' + error); <iframe id="meteor" src="http://live.peoplenook.com/"></iframe>
}
});


// meteor.initPush({ senderID: 'xxxxxxxxxxx' }); <script type="text/javascript">


}); shellVersion = '0.1.4';

meteor = new MeteorCordova('meteor');

// meteor.initPush({ senderID: 'xGoogleKeyx' });


</script> </script>


</head>
<body>


</body> </body>
</html> </html>

0 comments on commit 678ba45

Please sign in to comment.