mirror of
https://github.com/moparisthebest/mail
synced 2024-11-30 04:42:15 -05:00
c08ff4f287
* Use ng-animate with display:none instead of visibility:hidden * Fix min-height in lightbox * Start refactoring lightbox opening code using scope.state.lightbox
27 lines
779 B
HTML
27 lines
779 B
HTML
<!DOCTYPE html>
|
|
<html ng-app="mail" ng-csp>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Mail</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
|
<link rel="stylesheet" media="all" href="css/all.min.css" type="text/css">
|
|
|
|
<!-- The Scripts -->
|
|
<script src="lib/require.js"></script>
|
|
<script src="require-config.js"></script>
|
|
<script src="js/app.js"></script>
|
|
</head>
|
|
|
|
<body key-shortcuts>
|
|
|
|
<div ng-view class="main-app-view"></div>
|
|
|
|
<!-- error dialog lightbox -->
|
|
<div class="lightbox-overlay" ng-class="{'show': state.dialog.open}">
|
|
<div class="lightbox dialog view-dialog" ng-include="'tpl/dialog.html'"></div>
|
|
</div><!--/.lightbox-overlay-->
|
|
|
|
</body>
|
|
</html>
|