-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (77 loc) · 3.99 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!doctype html>
<html ng-app="asanaChromeApp" ng-csp="">
<head>
<meta charset="utf-8">
<title>Asana Task Viewer</title>
<!-- build:css styles/vendor.css -->
<!-- bower:css -->
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css" />
<link rel="stylesheet" href="bower_components/angular-notify/dist/angular-notify.css" />
<!-- endbower -->
<!-- endbuild -->
<!-- build:css styles/main.css -->
<link rel="stylesheet" href="bower_components/angular/angular-csp.css" />
<link rel="stylesheet" href="styles/bootstrap-paper-theme.min.css">
<link rel="stylesheet" href="styles/main.css">
<!-- endbuild -->
</head>
<body>
<div ng-view></div>
<script>
module.paths.push(__dirname + '/node_modules/');
require('electron-connect').client.create();
window.$ = window.jQuery = require('jquery/dist/jquery.js');
window.electronOpenLinkInBrowser = require('electron-open-link-in-browser');
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src='https://www.google-analytics.com/analytics.js';m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
var GA_LOCAL_STORAGE_KEY = 'ga:clientId';
ga('create', 'UA-18735851-17', 'auto', {
'storage': 'none',
'clientId': localStorage.getItem(GA_LOCAL_STORAGE_KEY)
});
ga(function(tracker) {
localStorage.setItem(GA_LOCAL_STORAGE_KEY, tracker.get('clientId'));
});
ga('set', 'checkProtocolTask', null);
ga('set', 'location', 'http://recurship.com');
</script>
<!-- incase of weird js errors replace lodash.compact with loadash.min -->
<!-- build:js scripts/vendor.js -->
<!-- bower:js -->
<!--<script src="bower_components/jquery/dist/jquery.min.js"></script>-->
<script src="bower_components/lodash/dist/lodash.min.js"></script>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/restangular/dist/restangular.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.js"></script>
<script src="bower_components/angular-base64/angular-base64.js"></script>
<script src="bower_components/angular-base64/angular-base64.min.js"></script>
<script src="bower_components/angular-notify/dist/angular-notify.js"></script>
<script src="bower_components/angular-route/angular-route.js"></script>
<script src="bower_components/angular-sanitize/angular-sanitize.js"></script>
<!-- endbower -->
<!-- endbuild -->
<!-- build:js scripts/index.js -->
<script src="scripts/chrome.js"></script>
<script src="scripts/index.js"></script>
<script src="scripts/controllers/main.js"></script>
<script src="scripts/controllers/auth.js"></script>
<script src="scripts/controllers/item.js"></script>
<script src="scripts/controllers/add.js"></script>
<script src="scripts/directives/item.js"></script>
<script src="scripts/directives/enter.js"></script>
<script src="scripts/directives/tooltip.js"></script>
<script src="scripts/services/asana.js"></script>
<script src="scripts/filters/initials.js"></script>
<script src="scripts/filters/newLines.js"></script>
<script src="scripts/filters/nameWithTeam.js"></script>
<script src="scripts/filters/attachment.js"></script>
<script src="scripts/filters/appendNames.js"></script>
<!-- endbuild -->
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
</body>
</html>