1 Apr 2008 03:02
SVN: [32649] trunk/extensions/SmoothGallery/SmoothGalleryClass.php
<laner <at> svn.wikimedia.org>
2008-04-01 01:02:53 GMT
2008-04-01 01:02:53 GMT
Revision: 32649
Author: laner
Date: 2008-04-01 01:02:53 +0000 (Tue, 01 Apr 2008)
Log Message:
-----------
Changing the images sizes back to html attributes instead of css attributes, eventhough neither seem to
work with this javascript library (*mumble*).
Modified Paths:
--------------
trunk/extensions/SmoothGallery/SmoothGalleryClass.php
Modified: trunk/extensions/SmoothGallery/SmoothGalleryClass.php
===================================================================
--- trunk/extensions/SmoothGallery/SmoothGalleryClass.php 2008-03-31 22:54:41 UTC (rev 32648)
+++ trunk/extensions/SmoothGallery/SmoothGalleryClass.php 2008-04-01 01:02:53 UTC (rev 32649)
<at> <at> -116,10 +116,8 <at> <at>
//TODO iterate over the images and output each
foreach ( $galleryArray["images"] as $imageArray ) {
if ( isset( $imageArray["external"] ) && $imageArray["external"] ) {
- #$thumbsizes = 'height="' . $wgSmoothGalleryThumbHeight . '" width="' .
$wgSmoothGalleryThumbWidth . '" ';
- #$fullsizes = 'height="' . $this->argumentArray["height"] . '" width="' .
$this->argumentArray["width"] . '" ';
- $thumbsizes = 'style="height: ' . $wgSmoothGalleryThumbHeight . '; width: ' .
$wgSmoothGalleryThumbWidth . '" ';
- $fullsizes = 'style="height: ' . $this->argumentArray["height"] . ' width: ' .
$this->argumentArray["width"] . '" ';
+ $thumbsizes = 'height="' . $wgSmoothGalleryThumbHeight . '" width="' .
(Continue reading)
RSS Feed