ginebra2/chrome/bedrockchrome/bookmarkview.superpage/BookmarkView.html
changeset 5 0f2326c2a325
parent 0 1450b09d0cfd
child 6 1c3b8676e58c
--- a/ginebra2/chrome/bedrockchrome/bookmarkview.superpage/BookmarkView.html	Fri May 14 15:40:36 2010 +0300
+++ b/ginebra2/chrome/bedrockchrome/bookmarkview.superpage/BookmarkView.html	Wed Jun 23 17:59:43 2010 +0300
@@ -1,48 +1,50 @@
 <!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="../../js/3rdparty/jquery-1.3.1.min.js" type="text/javascript"></script>
-	<script src="../../js/3rdparty/jquery-ui/ui.core.js" type="text/javascript"></script>
-	<script src="../../js/3rdparty/jquery-ui/ui.sortable.js" type="text/javascript"></script>
+    <script src="../../js/3rdparty/jquery-1.4.2.min.js" type="text/javascript"></script>
+    <script src="../../js/3rdparty/jquery-ui/ui.core.js" type="text/javascript"></script>
+    <script src="../../js/3rdparty/jquery-ui/ui.sortable.js" type="text/javascript"></script>
   <script src="../../js/LongPress.js" type="text/javascript"></script>
-  <script src="../../js/locale.js" type="text/javascript"></script>
   <script src="../../js/Bind.js" type="text/javascript"></script>
   <script src="../../js/ActionButton.js" type="text/javascript"></script>
-  <script src="../../js/SimpleButton.js" type="text/javascript"></script>
   <script src="bookmarkview.js" type="text/javascript"></script>
-	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
-  <link rel="stylesheet" id="CSSLink" type="text/css" href="bookmarkview.css"/> 
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+  <link rel="stylesheet" id="CSSLink" type="text/css" href="bookmarkview.css"/>
   <meta name = "viewport" content = "width = device-width, height = device-height, initial-scale = 1.0, user-scalable = no">
-	<title>Bookmark View</title>
+    <title>Bookmark View</title>
 
   <script type="text/javascript">
-	  function updateBookmakrView()
-	  {
-	  	launchBookmarkView();
-	  	
-  		
-  		// set the Width & Height
-	  	$("#bookmarkListId").css({"width": window.innerWidth+"px", "height": window.innerHeight+"px"});
-	  }
+      function updateBookmakrView()
+      {
+        launchBookmarkView();
+
+
+        // set the Width & Height
+        $("#bookmarkListId").css({"width": window.innerWidth+"px", "height": window.innerHeight+"px"});
+      }
 
-		var _sortingEnabled = false;
-		window.onresize = function(){
-	  		$("#bookmarkListId").css({"width": window.innerWidth+"px", "height": window.innerHeight+"px"});
-	  		
-	  		if(_sortingEnabled)
-	  		{
-					$('html, body').animate({
-										scrollTop: parseInt(_sortEleOffsetTop)}, 1000);
-	  		}
-		}
-	  
+        var __sortingEnabled = false;
+        var __sortEleOffsetTop = 0;
+        window.onresize = function(){
+            $("#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>
+        <ul id="bookmarkListTree"></ul>
+    </div>
+
+<div class="hiddenLoadImages"></div>
+
 </body>
 </html>