This repository has been archived by the owner on Oct 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (54 loc) · 1.64 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
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/jquery.mobile-1.1.0.min.css" />
<link rel="stylesheet" href="css/sweettweet.css" />
<script src="lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript">
// this adds default back button on every page
$(document).bind("mobileinit", function(){
$.mobile.page.prototype.options.addBackBtn= true;
});
</script>
<script src="lib/jquery.mobile-1.1.0.min.js"></script>
<script src="js/tweetsFeed.js"></script>
<script src="js/init.js"></script>
<script>
$(document).ready(function () {
$().initPage();
});
</script>
</head>
<body>
<div data-role="page" id="tweets-list">
<header data-role="header">
<h1><img src="images/twitter_normal.gif" />jsgeneve</h1>
<a id="filter-button" data-role="button" data-icon="search" class='ui-btn-right' data-iconpos="right">Filter</a>
</header>
<div data-role="content">
<ul id="tweets" data-role="listview" >
</ul>
</div>
<div id="filter-popup">
<div class="arrow"></div>
<ul data-role="listview" data-filter="true" >
<li>Node.js</li>
<li>Ember</li>
<li>Backbone</li>
<li>JQuery Mobile</li>
</ul>
</div>
</div>
<div data-role="page" id="tweet-detail">
<header data-role="header">
<h1><img src="images/twitter_normal.gif" />jsgeneve</h1>
<a href="#" data-role="button" data-icon="search" class='ui-btn-right' data-iconpos="right">Filter</a>
</header>
<div data-role="content">
my tweet !
</div>
</div>
</body>
</html>