Version Description
- Fix for mobile close on content click
- Fix for mobile close on overlay click
Download this release
Release Info
Developer | machothemes |
Plugin | FancyBox for WordPress |
Version | 3.2.3 |
Comparing to | |
See all releases |
Code changes from version 3.2.2 to 3.2.3
- fancybox.php +11 -3
- readme.txt +6 -2
fancybox.php
CHANGED
@@ -3,10 +3,10 @@
|
|
3 |
* Plugin Name: FancyBox for WordPress
|
4 |
* Plugin URI: https://wordpress.org/plugins/fancybox-for-wordpress/
|
5 |
* Description: Integrates <a href="http://fancyapps.com/fancybox/3/">FancyBox 3</a> into WordPress.
|
6 |
-
* Version: 3.2.
|
7 |
* Author: Colorlib
|
8 |
* Author URI: https://colorlib.com/wp/
|
9 |
-
* Tested up to: 5.
|
10 |
* Requires: 4.6 or higher
|
11 |
* License: GPLv3 or later
|
12 |
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -36,7 +36,7 @@
|
|
36 |
* Plugin Init
|
37 |
*/
|
38 |
// Constants
|
39 |
-
define( 'FBFW_VERSION', '3.2.
|
40 |
define( 'FBFW_PATH', plugin_dir_path( __FILE__ ) );
|
41 |
define( 'FBFW_URL', plugin_dir_url( __FILE__ ) );
|
42 |
define( 'FBFW_PLUGIN_BASE', plugin_basename( __FILE__ ) );
|
@@ -393,6 +393,14 @@ function mfbfw_init() {
|
|
393 |
arrows: <?php echo ( isset( $mfbfw['showNavArrows'] ) && $mfbfw['showNavArrows'] ? 'true' : 'false' ) ?>,
|
394 |
clickContent: <?php echo ( isset( $mfbfw['hideOnContentClick'] ) && $mfbfw['hideOnContentClick'] ? '"close"' : 'false' ) ?>,
|
395 |
clickSlide: <?php echo ( isset( $mfbfw['hideOnOverlayClick'] ) && $mfbfw['hideOnOverlayClick'] ? '"close"' : 'false' ) ?>,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
396 |
wheel: <?php echo ( isset( $mfbfw['mouseWheel'] ) && $mfbfw['mouseWheel'] ? 'true' : 'false' ) ?>,
|
397 |
toolbar: <?php echo ( isset( $mfbfw['showToolbar'] ) && $mfbfw['showToolbar'] ? 'true' : 'false' ) ?>,
|
398 |
preventCaptionOverlap: true,
|
3 |
* Plugin Name: FancyBox for WordPress
|
4 |
* Plugin URI: https://wordpress.org/plugins/fancybox-for-wordpress/
|
5 |
* Description: Integrates <a href="http://fancyapps.com/fancybox/3/">FancyBox 3</a> into WordPress.
|
6 |
+
* Version: 3.2.3
|
7 |
* Author: Colorlib
|
8 |
* Author URI: https://colorlib.com/wp/
|
9 |
+
* Tested up to: 5.2
|
10 |
* Requires: 4.6 or higher
|
11 |
* License: GPLv3 or later
|
12 |
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
36 |
* Plugin Init
|
37 |
*/
|
38 |
// Constants
|
39 |
+
define( 'FBFW_VERSION', '3.2.3' );
|
40 |
define( 'FBFW_PATH', plugin_dir_path( __FILE__ ) );
|
41 |
define( 'FBFW_URL', plugin_dir_url( __FILE__ ) );
|
42 |
define( 'FBFW_PLUGIN_BASE', plugin_basename( __FILE__ ) );
|
393 |
arrows: <?php echo ( isset( $mfbfw['showNavArrows'] ) && $mfbfw['showNavArrows'] ? 'true' : 'false' ) ?>,
|
394 |
clickContent: <?php echo ( isset( $mfbfw['hideOnContentClick'] ) && $mfbfw['hideOnContentClick'] ? '"close"' : 'false' ) ?>,
|
395 |
clickSlide: <?php echo ( isset( $mfbfw['hideOnOverlayClick'] ) && $mfbfw['hideOnOverlayClick'] ? '"close"' : 'false' ) ?>,
|
396 |
+
mobile:{
|
397 |
+
clickContent: function(current, event) {
|
398 |
+
return current.type === "image" ? <?php echo ( isset( $mfbfw['hideOnContentClick'] ) && $mfbfw['hideOnContentClick'] ? '"close"' : '"toggleControls"' ) ?> : false;
|
399 |
+
},
|
400 |
+
clickSlide: function(current, event) {
|
401 |
+
return current.type === "image" ? <?php echo ( isset( $mfbfw['hideOnOverlayClick'] ) && $mfbfw['hideOnOverlayClick'] ? '"close"' : '"toggleControls"' ) ?> : "close";
|
402 |
+
},
|
403 |
+
},
|
404 |
wheel: <?php echo ( isset( $mfbfw['mouseWheel'] ) && $mfbfw['mouseWheel'] ? 'true' : 'false' ) ?>,
|
405 |
toolbar: <?php echo ( isset( $mfbfw['showToolbar'] ) && $mfbfw['showToolbar'] ? 'true' : 'false' ) ?>,
|
406 |
preventCaptionOverlap: true,
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: silkalns
|
3 |
Tags: fancybox, lightbox, jquery, gallery, image, images, photo, photos, picture, pictures, zoom
|
4 |
Requires at least: 4.6
|
5 |
-
Tested up to: 5.
|
6 |
-
Stable tag: 3.2.
|
7 |
License: GPLv3 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
@@ -31,6 +31,10 @@ If you enjoy using FancyBox lightbox for WordPress please leave a [positive feed
|
|
31 |
|
32 |
== Changelog ==
|
33 |
|
|
|
|
|
|
|
|
|
34 |
= 3.2.2 =
|
35 |
* Fix for padding issue when title inside position
|
36 |
* Fix for title color when title is set to inside position
|
2 |
Contributors: silkalns
|
3 |
Tags: fancybox, lightbox, jquery, gallery, image, images, photo, photos, picture, pictures, zoom
|
4 |
Requires at least: 4.6
|
5 |
+
Tested up to: 5.2
|
6 |
+
Stable tag: 3.2.3
|
7 |
License: GPLv3 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
31 |
|
32 |
== Changelog ==
|
33 |
|
34 |
+
= 3.2.3 =
|
35 |
+
* Fix for mobile close on content click
|
36 |
+
* Fix for mobile close on overlay click
|
37 |
+
|
38 |
= 3.2.2 =
|
39 |
* Fix for padding issue when title inside position
|
40 |
* Fix for title color when title is set to inside position
|