-
Notifications
You must be signed in to change notification settings - Fork 3
/
settings.html
110 lines (103 loc) · 5.07 KB
/
settings.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!doctype html>
<!--[if lt IE 7 ]> <html class="no-js ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]> <html class="no-js ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]> <html class="no-js ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta name="google-site-verification" content="mip2rw9r2ei7TFIBvcoPNHmmsu2B-mtLFg-9XKdcT8A" />
<title>Atomate - demo</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta property="og:title" content="Atomate - Your digital personal assistant">
<meta property="og:app_id" content="122681067752275">
<meta property="og:site_name" content="Atomate">
<meta property="og:image" content="http://atomate.me/img/atomate_logo.png">
<meta property="og:url" content="http://atomate.me">
<meta property="og:type" content="website">
<meta property="og:description" content="Atomate helps you stay organized by giving you one place to find and update all the things you need for you day. It parties responsibly">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" href="css/styles.css?v=2">
</head>
<body>
<a href="http://github.com/Zamiang/Atomate">
<img style="position: absolute; top: 0; left: 0; border: 0;" src="https://d3nwyuy0nl342s.cloudfront.net/img/5d21241b64dc708fcbb701f68f72f41e9f1fadd6/687474703a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f6c6566745f7265645f6161303030302e706e67" alt="Fork me on GitHub">
</a>
<div class="social">
<fb:like href="http://atomate.me" send="true" layout="button_count" width="125" show_faces="true" font="lucida grande"></fb:like>
</div>
<header>
<h1>Atomate</h1>
<img class="logo" src="../img/atomate_bot.png" />
<h2>Your digital personal assistant</h2>
</header>
<div id="container">
<ul id="tabs">
<li class="selected">Now</li>
<li>Note</li>
<li>Todo</li>
<li>Events</li>
<li>Contacts</li>
<li>Reminders</li>
<li class="img_tab"><img src="../img/settings_16.png" /></li>
</ul>
<div id="main" role="main">
<input id="main_input" type="text"></input>
<ul id="notes"></ul>
</div>
</div>
<footer>
<a href="/about.html">About</a> •
<a href="/team.html">Team</a> •
<a href="/demo.html">Demo</a> •
<a href="https://github.com/Zamiang/Atomate">Source</a> •
<a href="/help">Help</a>
<div id="fb-root"></div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script src="http://connect.facebook.net/en_US/all.js#appId=213602652007737&xfbml=1"></script>
<script src="js/test_data.js"></script>
<script src="js/redacted_notes.js"></script>
<script src="../bin/atomate.js"></script>
<script src="../bin/util.js"></script>
<script src="../bin/detector.js"></script>
<script src="../bin/validator.js"></script>
<script src="../bin/trie.js"></script>
<script src="../bin/tracking.js"></script>
<script type="text/javascript">
// MIX PANEL
var mpq = ["init", "d3950de9980b43abe44956d1511c6af5"];
mixPanelInit = function() {
try {
// TODO: email MixPanel about this - to run callbacks they require a global called 'mpmetrics'
mpmetrics = new MixpanelLib("d3950de9980b43abe44956d1511c6af5");
return mpmetrics
} catch(err) {
var null_fn = function () {};
mpmetrics = {
track: null_fn,
track_funnel: null_fn,
register: null_fn,
register_once: null_fn,
register_funnel: null_fn,
identify: null_fn
};
return mpmetrics
}
};
jQuery(document).ready(function(){
Atomate.initialize({
trackingmodule: mpq,
mixPanelInit: mixPanelInit,
redactedNotes: REDACTED_NOTES
});
});
</script>
<script>
var _gaq=[["_setAccount","UA-XXXXX-X"],["_trackPageview"]]; // Change UA-XXXXX-X to be your site's ID
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.async=1;
g.src=("https:"==location.protocol?"//ssl":"//www")+".google-analytics.com/ga.js";
s.parentNode.insertBefore(g,s)}(document,"script"));
</script>
</body>
</html>