copay/app-template/index.html

36 lines
1.1 KiB
HTML
Raw Normal View History

2016-07-14 14:55:46 -07:00
<!doctype html>
2016-08-18 06:08:23 -07:00
<html lang="en">
2016-08-19 05:51:13 -07:00
<head ng-controller="headController">
2015-03-06 07:00:10 -08:00
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
2016-02-09 13:48:53 -08:00
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
2015-03-06 07:00:10 -08:00
<meta name="msapplication-tap-highlight" content="no">
2015-11-11 11:35:19 -08:00
<meta name="format-detection" content="telephone=no">
2016-12-27 10:38:57 -08:00
<link rel="stylesheet" type="text/css" href="css/main.css">
<title>*USERVISIBLENAME* - *PURPOSELINE*</title>
2016-10-18 12:10:12 -07:00
<link rel="shortcut icon" href="img/app/favicon.ico">
2015-03-06 07:00:10 -08:00
</head>
2016-08-17 11:23:17 -07:00
<body>
2015-03-06 07:00:10 -08:00
2016-10-20 15:24:14 -07:00
<!-- Workaround to prevent autofill -->
<div style="display: none;">
<input type="text"
id="PreventChromeAutocomplete"
name="PreventChromeAutocomplete"
autocomplete="address-level4" />
</div>
<ion-nav-view>
<incoming-data-menu></incoming-data-menu>
</ion-nav-view>
2016-05-13 06:49:36 -07:00
<script src="lib/ionic.bundle.min.js"></script>
2016-12-27 10:38:57 -08:00
<script src="lib/angular-components.js"></script>
2015-03-06 07:00:10 -08:00
2016-08-17 11:23:17 -07:00
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
2015-03-06 07:00:10 -08:00
2016-12-27 10:38:57 -08:00
<script src="js/app.js"></script>
2015-03-06 07:00:10 -08:00
</body>
</html>