Version Description
- Fix: Nivo lightbox buttons and styles missing
Download this release
Release Info
Developer | dfactory |
Plugin | Responsive Lightbox & Gallery |
Version | 1.5.3 |
Comparing to | |
See all releases |
Code changes from version 1.5.2 to 1.5.3
- readme.txt +6 -5
- responsive-lightbox.php +5 -8
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.dfactory.eu/
|
|
4 |
Tags: gallery, images, lightbox, links, photos, template, theme, photo, image, picture, slideshow, modal, overlay, YouTube, Vimeo, video, videos
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.2.2
|
7 |
-
Stable tag: 1.5.
|
8 |
License: MIT License
|
9 |
License URI: http://opensource.org/licenses/MIT
|
10 |
|
@@ -67,6 +67,9 @@ No questions yet.
|
|
67 |
|
68 |
== Changelog ==
|
69 |
|
|
|
|
|
|
|
70 |
= 1.5.2 =
|
71 |
* New: Tos "R" Us lightbox script
|
72 |
* Fix: Final fix for video links regex (hopefully)
|
@@ -214,7 +217,5 @@ Initial release
|
|
214 |
|
215 |
== Upgrade Notice ==
|
216 |
|
217 |
-
= 1.5.
|
218 |
-
*
|
219 |
-
* Fix: Final fix for video links regex (hopefully)
|
220 |
-
* Tweak: Switched from rel to data-rel attribute to avoid W3C validation errors
|
4 |
Tags: gallery, images, lightbox, links, photos, template, theme, photo, image, picture, slideshow, modal, overlay, YouTube, Vimeo, video, videos
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.2.2
|
7 |
+
Stable tag: 1.5.3
|
8 |
License: MIT License
|
9 |
License URI: http://opensource.org/licenses/MIT
|
10 |
|
67 |
|
68 |
== Changelog ==
|
69 |
|
70 |
+
= 1.5.3 =
|
71 |
+
* Fix: Nivo lightbox buttons and styles missing
|
72 |
+
|
73 |
= 1.5.2 =
|
74 |
* New: Tos "R" Us lightbox script
|
75 |
* Fix: Final fix for video links regex (hopefully)
|
217 |
|
218 |
== Upgrade Notice ==
|
219 |
|
220 |
+
= 1.5.3 =
|
221 |
+
* Fix: Nivo lightbox buttons and styles missing
|
|
|
|
responsive-lightbox.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Responsive Lightbox
|
4 |
Description: Responsive Lightbox allows users to view larger versions of images and galleries in a lightbox (overlay) effect optimized for mobile devices.
|
5 |
-
Version: 1.5.
|
6 |
Author: dFactory
|
7 |
Author URI: http://www.dfactory.eu/
|
8 |
Plugin URI: http://www.dfactory.eu/plugins/responsive-lightbox/
|
@@ -36,7 +36,7 @@ include_once( RESPONSIVE_LIGHTBOX_PATH . 'includes/class-settings.php' );
|
|
36 |
* Responsive Lightbox class.
|
37 |
*
|
38 |
* @class Responsive_Lightbox
|
39 |
-
* @version 1.5.
|
40 |
*/
|
41 |
class Responsive_Lightbox {
|
42 |
|
@@ -141,7 +141,7 @@ class Responsive_Lightbox {
|
|
141 |
'pagination_type' => 'thumbnails'
|
142 |
)
|
143 |
),
|
144 |
-
'version' => '1.5.
|
145 |
);
|
146 |
public $options = array();
|
147 |
private static $_instance;
|
@@ -461,20 +461,17 @@ class Responsive_Lightbox {
|
|
461 |
wp_register_script(
|
462 |
'responsive-lightbox-nivo', plugins_url( 'assets/nivo/nivo-lightbox.min.js', __FILE__ ), array( 'jquery' ), '', ($this->options['settings']['loading_place'] === 'header' ? false : true )
|
463 |
);
|
464 |
-
|
465 |
wp_enqueue_script( 'responsive-lightbox-nivo' );
|
466 |
|
467 |
wp_register_style(
|
468 |
'responsive-lightbox-nivo', plugins_url( 'assets/nivo/nivo-lightbox.css', __FILE__ )
|
469 |
);
|
470 |
-
|
471 |
wp_enqueue_style( 'responsive-lightbox-nivo' );
|
472 |
|
473 |
wp_register_style(
|
474 |
-
'responsive-lightbox-nivo', plugins_url( 'assets/nivo/themes/default/default.css', __FILE__ )
|
475 |
);
|
476 |
-
|
477 |
-
wp_enqueue_style( 'responsive-lightbox-nivo' );
|
478 |
|
479 |
$args = array_merge(
|
480 |
$args, array(
|
2 |
/*
|
3 |
Plugin Name: Responsive Lightbox
|
4 |
Description: Responsive Lightbox allows users to view larger versions of images and galleries in a lightbox (overlay) effect optimized for mobile devices.
|
5 |
+
Version: 1.5.3
|
6 |
Author: dFactory
|
7 |
Author URI: http://www.dfactory.eu/
|
8 |
Plugin URI: http://www.dfactory.eu/plugins/responsive-lightbox/
|
36 |
* Responsive Lightbox class.
|
37 |
*
|
38 |
* @class Responsive_Lightbox
|
39 |
+
* @version 1.5.3
|
40 |
*/
|
41 |
class Responsive_Lightbox {
|
42 |
|
141 |
'pagination_type' => 'thumbnails'
|
142 |
)
|
143 |
),
|
144 |
+
'version' => '1.5.3'
|
145 |
);
|
146 |
public $options = array();
|
147 |
private static $_instance;
|
461 |
wp_register_script(
|
462 |
'responsive-lightbox-nivo', plugins_url( 'assets/nivo/nivo-lightbox.min.js', __FILE__ ), array( 'jquery' ), '', ($this->options['settings']['loading_place'] === 'header' ? false : true )
|
463 |
);
|
|
|
464 |
wp_enqueue_script( 'responsive-lightbox-nivo' );
|
465 |
|
466 |
wp_register_style(
|
467 |
'responsive-lightbox-nivo', plugins_url( 'assets/nivo/nivo-lightbox.css', __FILE__ )
|
468 |
);
|
|
|
469 |
wp_enqueue_style( 'responsive-lightbox-nivo' );
|
470 |
|
471 |
wp_register_style(
|
472 |
+
'responsive-lightbox-nivo-default', plugins_url( 'assets/nivo/themes/default/default.css', __FILE__ )
|
473 |
);
|
474 |
+
wp_enqueue_style( 'responsive-lightbox-nivo-default' );
|
|
|
475 |
|
476 |
$args = array_merge(
|
477 |
$args, array(
|