mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Remove old unused cordova boilerplate
This commit is contained in:
@@ -1,43 +0,0 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="format-detection" content="telephone=no">
|
||||
<!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
|
||||
<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">
|
||||
<meta name="msapplication-tap-highlight" content="no">
|
||||
{{#each css}} <link rel="stylesheet" href="{{url}}">{{/each}}
|
||||
|
||||
<script type="text/javascript">
|
||||
__meteor_runtime_config__ = {
|
||||
'meteorRelease':'none',
|
||||
'ROOT_URL':'http://{{host}}:{{port}}/',
|
||||
'ROOT_URL_PATH_PREFIX':'',
|
||||
'DDP_DEFAULT_CONNECTION_URL':'http://{{host}}:{{port}}'
|
||||
};
|
||||
</script>
|
||||
|
||||
{{#each js}} <script type="text/javascript" src="js{{url}}"></script>
|
||||
{{/each}}
|
||||
|
||||
{{{head}}}
|
||||
<script type="text/javascript">
|
||||
UI.body.INSTANTIATED = true;
|
||||
|
||||
if (typeof Package === 'undefined' ||
|
||||
! Package.webapp ||
|
||||
! Package.webapp.WebApp ||
|
||||
! Package.webapp.WebApp._isCssLoaded())
|
||||
document.location.reload();
|
||||
|
||||
Meteor.startup(function () {
|
||||
UI.body.INSTANTIATED = true;
|
||||
UI.DomRange.insert(UI.render(UI.body).dom, document.querySelector('#meteor-app-container') );
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
{{{body}}}
|
||||
<div id="meteor-app-container"></div><div id="meteor-app-container"></div>
|
||||
<script type="text/javascript" src="cordova.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user