changeset 626:f2ab7d4eedc2 jquery

Merge with HEAD
author robcast
date Mon, 17 Jan 2011 22:10:12 +0100
parents 5f3564a21a9c (diff) 7d13b7e5140e (current diff)
children c2566e470569
files client/digitallibrary/jquery/jquery.digilib.js
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/client/digitallibrary/jquery/jquery.digilib.js	Mon Jan 17 18:23:52 2011 +0100
+++ b/client/digitallibrary/jquery/jquery.digilib.js	Mon Jan 17 22:10:12 2011 +0100
@@ -459,7 +459,7 @@
         var birdSettings = $.extend({}, settings, birdDimensions);
         var birdUrl = settings.scalerBaseUrl + '?' + makeParamString(birdSettings, keys);
         // the bird's eye div
-        var $birdviewDiv = $('<div class="birdview"/>');
+        var $birdviewDiv = $('<div class="birdview" style="display:none"/>');
         // the detail indicator frame
         var $birdzoomDiv = $('<div class="birdzoom"/>');
         // the small image
@@ -470,9 +470,9 @@
         $birdImg.attr('src', birdUrl);
         };
 
-    // creates HTML structure for the bird's eye view in elem
+    // creates HTML structure for the about view in elem
     var setupAboutDiv = function ($elem, settings) {
-        var $aboutDiv = $('<div class="about"/>');
+        var $aboutDiv = $('<div class="about" style="display:none"/>');
         var $header = $('<p>Digilib Graphic Viewer</p>');
         var $link = $('<a/>');
         var $logo = $('<img class="logo" title="digilib"/>');