Fixed some 1.1.7 Javascript setup code; set format of scaled images to JPEG (1.1.7+) to make operation faster
authorDan
Mon, 03 Aug 2009 16:46:52 -0400
changeset 4 c2458c3b0365
parent 3 b52509cf73af
child 5 dd7c762112b2
Fixed some 1.1.7 Javascript setup code; set format of scaled images to JPEG (1.1.7+) to make operation faster
LightboxGallery.php
--- a/LightboxGallery.php	Wed May 27 09:37:06 2009 -0400
+++ b/LightboxGallery.php	Mon Aug 03 16:46:52 2009 -0400
@@ -34,9 +34,17 @@
 {
   global $db, $session, $paths, $template, $plugins; // Common objects
   
-  $template->add_header('<script type="text/javascript" src="' . cdnPath . '/includes/clientside/static/jquery.js"></script>');
-  $template->add_header('<script type="text/javascript" src="' . cdnPath . '/includes/clientside/static/jquery-ui.js"></script>');
-  $template->add_header('<script type="text/javascript" src="' . scriptPath . '/plugins/lightboxgallery/jquery.lightbox-0.5.pack.js"></script>');
+  if ( method_exists($template, 'preload_js') && method_exists($template, 'add_header_js') )
+  {
+    $template->preload_js(array('jquery', 'jquery-ui'));
+    $template->add_header_js('<script type="text/javascript" src="' . scriptPath . '/plugins/lightboxgallery/jquery.lightbox-0.5.pack.js"></script>');
+  }
+  else
+  {
+    $template->add_header('<script type="text/javascript" src="' . cdnPath . '/includes/clientside/static/jquery.js"></script>');
+    $template->add_header('<script type="text/javascript" src="' . cdnPath . '/includes/clientside/static/jquery-ui.js"></script>');
+    $template->add_header('<script type="text/javascript" src="' . scriptPath . '/plugins/lightboxgallery/jquery.lightbox-0.5.pack.js"></script>');
+  }
   $template->add_header('<link rel="stylesheet" type="text/css" href="' . scriptPath . '/plugins/lightboxgallery/jquery.lightbox-0.5.css" />');
   $template->add_header('<script type="text/javascript">
       var loaded_components = loaded_components || {};
@@ -101,7 +109,7 @@
       $alt = str_replace('_', ' ', dirtify_page_id($image));
     }
     $imagelist[] = array($image, $alt);
-    $tag = '<a class="' . $id . '" href="' . makeUrlNS('Special', "DownloadFile/$image", "preview&width=$width&height=9999", true) . '" title="' . trim(htmlspecialchars(RenderMan::render($alt))) . '">';
+    $tag = '<a class="' . $id . '" href="' . makeUrlNS('Special', "DownloadFile/$image", "preview&width=$width&height=9999&fmt=jpg", true) . '" title="' . trim(htmlspecialchars(RenderMan::render($alt))) . '">';
     if ( !isset($firstimageid) )
     {
       $firstimagetag = $tag;
@@ -132,10 +140,18 @@
   return "$trigger<nowiki>
     <div style=\"display: none;\">$inner</div>
     <script type=\"text/javascript\">
-      addOnloadHook(function()
+      window.lbg_construct_$id = function()
         {
-          lbgallery_construct('a.$id');
-        });
+          if ( window.jQuery && window.jQuery.fn.lightBox )
+          {
+            lbgallery_construct('a.$id');
+          }
+          else
+          {
+            setTimeout(lbg_construct_$id, 200);
+          }
+        };
+      addOnloadHook(window.lbg_construct_$id);
     </script></nowiki>";
 }