2013-03-13 11:58:46 -04:00
|
|
|
<!DOCTYPE html>
|
2013-09-04 12:39:26 -04:00
|
|
|
<html ng-app="mail" ng-csp>
|
2013-03-13 11:58:46 -04:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2013-10-16 08:03:13 -04:00
|
|
|
<title>Mail</title>
|
2013-09-15 08:11:09 -04:00
|
|
|
|
2013-11-17 10:15:07 -05:00
|
|
|
<!-- Theses CSP rules are used as a fallback in runtimes such as PhoneGap where setting http headers is not possbile. -->
|
2014-02-02 13:06:07 -05:00
|
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; object-src 'none'; connect-src 'self' https://keys.whiteout.io https://keys-test.whiteout.io; img-src 'self' data:;">
|
2013-09-15 08:11:09 -04:00
|
|
|
|
2013-12-06 11:11:57 -05:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
2013-10-22 12:26:30 -04:00
|
|
|
<link rel="stylesheet" media="all" href="css/all.min.css" type="text/css">
|
2013-09-04 12:39:26 -04:00
|
|
|
|
2014-02-01 08:43:15 -05:00
|
|
|
<!-- PhoneGap dependencies -->
|
|
|
|
<script src="phonegap.js"></script>
|
|
|
|
|
2013-03-13 11:58:46 -04:00
|
|
|
<!-- The Scripts -->
|
2013-07-30 04:07:42 -04:00
|
|
|
<script src="lib/require.js"></script>
|
|
|
|
<script src="require-config.js"></script>
|
2013-09-04 12:39:26 -04:00
|
|
|
<script src="js/app.js"></script>
|
2013-03-13 11:58:46 -04:00
|
|
|
</head>
|
2013-09-04 12:39:26 -04:00
|
|
|
|
2013-10-16 08:03:13 -04:00
|
|
|
<body>
|
2014-04-23 06:20:46 -04:00
|
|
|
|
2013-10-16 08:03:13 -04:00
|
|
|
<div ng-view class="main-app-view ios-spacer"></div>
|
2014-04-23 06:20:46 -04:00
|
|
|
|
|
|
|
<!-- error dialog lightbox -->
|
|
|
|
<div class="lightbox-overlay" ng-class="{'show': state.dialog.open}">
|
2014-04-24 10:59:38 -04:00
|
|
|
<div class="lightbox dialog view-dialog" ng-include="'tpl/dialog.html'"></div>
|
2014-04-23 06:20:46 -04:00
|
|
|
</div><!--/.lightbox-overlay-->
|
|
|
|
|
2013-09-04 12:39:26 -04:00
|
|
|
</body>
|
|
|
|
</html>
|