<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-EN">
<head>
<script src="/chrome/jquery-1.4.2.min.js" type="text/javascript"></script>
<script src="/chrome/ui.core.js" type="text/javascript"></script>
<script src="/chrome/ui.sortable.js" type="text/javascript"></script>
<script src="/chrome/LongPress.js" type="text/javascript"></script>
<script src="/chrome/Bind.js" type="text/javascript"></script>
<script src="/bookmarkview/bookmarkview.js" type="text/javascript"></script>
<link rel="stylesheet" id="CSSLink" type="text/css" href="/bookmarkview/bookmarkview.css"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name = "viewport" content = "width = device-width, height = device-height, initial-scale = 1.0, user-scalable = no">
<title>Bookmarks</title>
<script type="text/javascript">
function scrollToTop() {
if(__prevOpenedBookmarkControl)
_bookmarkHideControl(__prevOpenedBookmarkControl);
$('html, body').attr({scrollTop: 0});
_updateBookmarkViewGoemetry(0);
}
function updateBookmakrView() {
window.views.WebView.BookmarkTreeView.shown.connect(scrollToTop);
launchBookmarkView();
//set the Width & Height
if ( !window.views.WebView.bedrockTiledBackingStoreEnabled() )
$("#bookmarkListId").css({"width": window.innerWidth+"px", "height": window.innerHeight+"px"});
}
var __sortingEnabled = false;
var __sortEleOffsetTop = 0;
window.onresize = function() {
if ( !window.views.WebView.bedrockTiledBackingStoreEnabled() )
$("#bookmarkListId").css({"width": window.innerWidth+"px", "height": window.innerHeight+"px"});
if (__sortingEnabled)
{
$('html, body').animate(
{scrollTop: parseInt(__sortEleOffsetTop)},
1000);
}
}
</script>
</head>
<body onload=updateBookmakrView()>
<div id="bookmarkListId" class="bookmarkList">
<ul id="bookmarkListTree"></ul>
<div id="BottomPad"></div>
</div>
<!--
<div class="hiddenLoadImages"></div>
-->
</body>
</html>