|
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|
2 <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-EN"> |
|
3 <head> |
|
4 <script src="../../js/3rdparty/jquery-1.3.1.min.js" type="text/javascript"></script> |
|
5 <script src="../../js/3rdparty/jquery-ui/ui.core.js" type="text/javascript"></script> |
|
6 <script src="../../js/3rdparty/jquery-ui/ui.sortable.js" type="text/javascript"></script> |
|
7 <script src="../../js/LongPress.js" type="text/javascript"></script> |
|
8 <script src="../../js/locale.js" type="text/javascript"></script> |
|
9 <script src="../../js/Bind.js" type="text/javascript"></script> |
|
10 <script src="../../js/ActionButton.js" type="text/javascript"></script> |
|
11 <script src="../../js/SimpleButton.js" type="text/javascript"></script> |
|
12 <script src="bookmarkview.js" type="text/javascript"></script> |
|
13 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> |
|
14 <link rel="stylesheet" id="CSSLink" type="text/css" href="bookmarkview.css"/> |
|
15 <meta name = "viewport" content = "width = device-width, height = device-height, initial-scale = 1.0, user-scalable = no"> |
|
16 <title>Bookmark View</title> |
|
17 |
|
18 <script type="text/javascript"> |
|
19 function updateBookmakrView() |
|
20 { |
|
21 launchBookmarkView(); |
|
22 |
|
23 |
|
24 // set the Width & Height |
|
25 $("#bookmarkListId").css({"width": window.innerWidth+"px", "height": window.innerHeight+"px"}); |
|
26 } |
|
27 |
|
28 var _sortingEnabled = false; |
|
29 window.onresize = function(){ |
|
30 $("#bookmarkListId").css({"width": window.innerWidth+"px", "height": window.innerHeight+"px"}); |
|
31 |
|
32 if(_sortingEnabled) |
|
33 { |
|
34 $('html, body').animate({ |
|
35 scrollTop: parseInt(_sortEleOffsetTop)}, 1000); |
|
36 } |
|
37 } |
|
38 |
|
39 </script> |
|
40 |
|
41 </head> |
|
42 |
|
43 <body onload=updateBookmakrView()> |
|
44 <div id="bookmarkListId" class="bookmarkList"> |
|
45 <ul id="bookmarkListTree"></ul> |
|
46 </div> |
|
47 </body> |
|
48 </html> |