-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
167 lines (118 loc) · 5.13 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html>
<head>
<title>Find Your Twitter Unfollowers</title>
<!-- bootstrap head elements -->
<meta charset='utf-8'>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="assets/css/bootstrap.css" rel="stylesheet">
<link href="assets/css/bootstrap-responsive.css" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="assets/ico/favicon.ico">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div class="topbar js-topbar">
<div class="global-nav" data-section-term="top_nav">
<div class="global-nav-inner">
<div class="container">
<ul class="nav js-global-actions">
<li class="home">
<a class="nav-logo-link" href="//twitter.com">
<i class="bird-topbar-blue"></i>
</a>
</li>
</ul>
<div class="pull-right">
<ul class="nav secondary-nav">
<li><a href="https://twitter.com/intent/tweet?source=webclient&text=DM @Galaxy_Watcher new bugs: your discover goes here!" id="homeLink">found a bug?</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="body-content">
<h1>Twitter Unfollowers Search <span style='font-size:0.4em;'>Beta</span></h1>
<p>find out your unfollowers in a second.</p>
<div class="search">
<input id="twitter_username" type="text" placeholder="Search for a twitter username" name="q">
<input id="search_submit" class="btn" type="submit" value="Search">
</div>
<div class="result">
<div id="content-pane"></div>
<div id="update_container">
</div>
</div>
<!-- notify the first access -->
<!-- modal blocks -->
<div class="modal hide fade" id="udpateModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">First Time Access?</h3>
</div>
<div class="modal-body">
<p>Our system has detected this is the first time you are using our services, we need to initialize our storage for your account?</p>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
<button id="init" class="btn btn-primary">Init Now</button>
</div>
</div>
<!-- modal blocks ends -->
<!-- a button to update the current status -->
<script type="text/template" id="tpl-update-panel">
<div class="update-request">
<button id="update" class="btn btn-primary">Sync with Current followers</button>
<a data-content="For doing this, it will simply set the currently followers list as a benchmark. Your next followers comparision will be based on this updated records." data-placement='bottom' rel="popover" href="#" data-original-title="update followers to server" class="whatsit" id="whatsit">?whats this</a>
</div>
</script>
<!-- a button to update the current status -->
<div class="clearfix"></div>
<div class="footer">
<ul class="links">
<li class="first">© Brought to you by <a href="http://www.novainspire.com" target="_blank">NovaInspire</a></li>
<li><a href="http://www.novainspire.com" target="_blank">About</a></li>
<li><a href="mailto:[email protected]">Contact</a></li>
</ul>
</div>
</div>
<div id="overlay" class="fullpage_background overlay"></div>
<img id="fullpage_background" class="fullpage_background" style="opacity: 0.7; display: hidden;" alt="" src="assets/img/bg-nz.jpg">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="http://ajax.cdnjs.com/ajax/libs/underscore.js/1.1.4/underscore-min.js"></script>
<script src="http://ajax.cdnjs.com/ajax/libs/backbone.js/0.3.3/backbone-min.js"></script>
<script type="text/javascript" src="assets/js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/libs/bootbox.js"></script>
<!-- view js file controlls for update view -->
<script type="text/javascript" src="js/update.js"></script>
<!-- main js file controlls the view -->
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/libs/imagesLoaded.js"></script>
<script type="text/javascript" src="js/libs/loadingdotdotdot.js"></script>
<script type="text/javascript" src="js/libs/jquery.backstretch.js"></script>
<script type="text/javascript">
(function ($) {
//fadein in action when image is loaded completely
try{
$.backstretch($("#fullpage_background").src, {speed: 150});
$("#fullpage_background").hide().imagesLoaded(function(){this.fadeIn('slow')});
//binding the popover events.
$("#whatsit").click(function(e){
alert('cool');
return false;
});
}
catch(e){
};
});
</script>
</body>
</html>