Version Description
- FIX: TypeError: 'null' is not an object (evaluating 'e.offsetHeight')
Download this release
Release Info
Developer | contrid |
Plugin | Slideshow Gallery |
Version | 1.4.4.3 |
Comparing to | |
See all releases |
Code changes from version 1.4.4.2 to 1.4.4.3
- js/gallery.js +6 -4
- readme.txt +4 -1
- slideshow-gallery-plugin.php +1 -1
- slideshow-gallery.php +1 -1
js/gallery.js
CHANGED
@@ -83,10 +83,12 @@ TINY.slideshow.prototype={
|
|
83 |
this.is(t,c)
|
84 |
},
|
85 |
is:function(s,c){
|
86 |
-
if(this.info
|
87 |
-
|
88 |
-
|
89 |
-
|
|
|
|
|
90 |
}
|
91 |
|
92 |
var i=new Image();
|
83 |
this.is(t,c)
|
84 |
},
|
85 |
is:function(s,c){
|
86 |
+
if(this.info) {
|
87 |
+
if (this.a[s].t.length > 0 || this.a[s].d.length > 0) {
|
88 |
+
TINY.height.set(this.r,1,this.infoSpeed/2,-1);
|
89 |
+
} else {
|
90 |
+
TINY.height.set(this.r,0,this.infoSpeed/2,-1);
|
91 |
+
}
|
92 |
}
|
93 |
|
94 |
var i=new Image();
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://tribulant.com/
|
|
4 |
Tags: wordpress plugins, wordpress slideshow gallery, slides, slideshow, image gallery, images, gallery, featured content, content gallery, javascript, javascript slideshow, slideshow gallery
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 3.9.1
|
7 |
-
Stable tag: 1.4.4.
|
8 |
|
9 |
Feature content in a JavaScript powered slideshow gallery showcase on your WordPress website
|
10 |
|
@@ -122,6 +122,9 @@ There is an "Images Tester" utility under Slideshow > Configuration on the right
|
|
122 |
|
123 |
== Changelog ==
|
124 |
|
|
|
|
|
|
|
125 |
= 1.4.4.2 =
|
126 |
* IMPROVE: Replaced eregi() with preg_match()
|
127 |
* IMPROVE: Replaced ereg_replace() with preg_replace()
|
4 |
Tags: wordpress plugins, wordpress slideshow gallery, slides, slideshow, image gallery, images, gallery, featured content, content gallery, javascript, javascript slideshow, slideshow gallery
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 3.9.1
|
7 |
+
Stable tag: 1.4.4.3
|
8 |
|
9 |
Feature content in a JavaScript powered slideshow gallery showcase on your WordPress website
|
10 |
|
122 |
|
123 |
== Changelog ==
|
124 |
|
125 |
+
= 1.4.4.3 =
|
126 |
+
* FIX: TypeError: 'null' is not an object (evaluating 'e.offsetHeight')
|
127 |
+
|
128 |
= 1.4.4.2 =
|
129 |
* IMPROVE: Replaced eregi() with preg_match()
|
130 |
* IMPROVE: Replaced ereg_replace() with preg_replace()
|
slideshow-gallery-plugin.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
class GalleryPlugin {
|
4 |
|
5 |
-
var $version = '1.4.4.
|
6 |
var $plugin_name;
|
7 |
var $plugin_base;
|
8 |
var $pre = 'Gallery';
|
2 |
|
3 |
class GalleryPlugin {
|
4 |
|
5 |
+
var $version = '1.4.4.3';
|
6 |
var $plugin_name;
|
7 |
var $plugin_base;
|
8 |
var $pre = 'Gallery';
|
slideshow-gallery.php
CHANGED
@@ -6,7 +6,7 @@ Plugin URI: http://wpgallery.tribulant.net
|
|
6 |
Author: Tribulant Software
|
7 |
Author URI: http://tribulant.com
|
8 |
Description: Feature content in a JavaScript powered slideshow gallery showcase on your WordPress website. The slideshow is flexible and all aspects can easily be configured. Embedding or hardcoding the slideshow gallery is a breeze. To embed into a post/page, simply insert <code>[tribulant_slideshow]</code> into its content with an optional <code>post_id</code> parameter. To hardcode into any PHP file of your WordPress theme, simply use <code><?php if (function_exists('slideshow')) { slideshow($output = true, $post_id = false, $gallery_id = false, $params = array()); } ?></code>.
|
9 |
-
Version: 1.4.4.
|
10 |
License: GNU General Public License v2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
Tags: slideshow gallery, slideshow, gallery, slider, jquery, bfithumb, galleries, photos, images
|
6 |
Author: Tribulant Software
|
7 |
Author URI: http://tribulant.com
|
8 |
Description: Feature content in a JavaScript powered slideshow gallery showcase on your WordPress website. The slideshow is flexible and all aspects can easily be configured. Embedding or hardcoding the slideshow gallery is a breeze. To embed into a post/page, simply insert <code>[tribulant_slideshow]</code> into its content with an optional <code>post_id</code> parameter. To hardcode into any PHP file of your WordPress theme, simply use <code><?php if (function_exists('slideshow')) { slideshow($output = true, $post_id = false, $gallery_id = false, $params = array()); } ?></code>.
|
9 |
+
Version: 1.4.4.3
|
10 |
License: GNU General Public License v2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
Tags: slideshow gallery, slideshow, gallery, slider, jquery, bfithumb, galleries, photos, images
|