Version Description
- FIX: inline wrapper nesting issue
- Revert to file names without version
Download this release
Release Info
Developer | deployer |
Plugin | Easy FancyBox |
Version | 1.8.15 |
Comparing to | |
See all releases |
Code changes from version 1.8.14 to 1.8.15
- css/{jquery.fancybox-ie.1.3.23.css → jquery.fancybox-ie.css} +0 -0
- css/{jquery.fancybox-ie.1.3.23.min.css → jquery.fancybox-ie.min.css} +0 -0
- css/{jquery.fancybox.1.3.23.css → jquery.fancybox.css} +0 -0
- css/{jquery.fancybox.1.3.23.min.css → jquery.fancybox.min.css} +0 -0
- easy-fancybox.php +2 -2
- inc/class-easyfancybox.php +6 -6
- readme.txt +11 -8
css/{jquery.fancybox-ie.1.3.23.css → jquery.fancybox-ie.css}
RENAMED
File without changes
|
css/{jquery.fancybox-ie.1.3.23.min.css → jquery.fancybox-ie.min.css}
RENAMED
File without changes
|
css/{jquery.fancybox.1.3.23.css → jquery.fancybox.css}
RENAMED
File without changes
|
css/{jquery.fancybox.1.3.23.min.css → jquery.fancybox.min.css}
RENAMED
File without changes
|
easy-fancybox.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://status301.net/wordpress-plugins/easy-fancybox/
|
|
5 |
Description: Easily enable the <a href="http://fancybox.net/">FancyBox jQuery extension</a> on all image, SWF, PDF, YouTube, Dailymotion and Vimeo links. Also supports iFrame and inline content.
|
6 |
Text Domain: easy-fancybox
|
7 |
Domain Path: languages
|
8 |
-
Version: 1.8.
|
9 |
Author: RavanH
|
10 |
Author URI: http://status301.net/
|
11 |
*/
|
@@ -37,7 +37,7 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
37 |
* CONSTANTS
|
38 |
**************/
|
39 |
|
40 |
-
define( 'EASY_FANCYBOX_VERSION', '1.8.
|
41 |
define( 'FANCYBOX_VERSION', '1.3.24' );
|
42 |
define( 'MOUSEWHEEL_VERSION', '3.1.13' );
|
43 |
define( 'EASING_VERSION', '1.4.1' );
|
5 |
Description: Easily enable the <a href="http://fancybox.net/">FancyBox jQuery extension</a> on all image, SWF, PDF, YouTube, Dailymotion and Vimeo links. Also supports iFrame and inline content.
|
6 |
Text Domain: easy-fancybox
|
7 |
Domain Path: languages
|
8 |
+
Version: 1.8.15
|
9 |
Author: RavanH
|
10 |
Author URI: http://status301.net/
|
11 |
*/
|
37 |
* CONSTANTS
|
38 |
**************/
|
39 |
|
40 |
+
define( 'EASY_FANCYBOX_VERSION', '1.8.15' );
|
41 |
define( 'FANCYBOX_VERSION', '1.3.24' );
|
42 |
define( 'MOUSEWHEEL_VERSION', '3.1.13' );
|
43 |
define( 'EASING_VERSION', '1.4.1' );
|
inc/class-easyfancybox.php
CHANGED
@@ -322,9 +322,9 @@ var easy_fancybox_auto=function(){setTimeout(function(){jQuery(\'a[class*="'.$tr
|
|
322 |
$min = ( defined('WP_DEBUG') && WP_DEBUG ) ? '' : '.min';
|
323 |
|
324 |
// ENQUEUE STYLE
|
325 |
-
wp_enqueue_style( 'fancybox', self::$plugin_url.'css/jquery.fancybox
|
326 |
if ( !empty(self::$inline_style_ie) ) {
|
327 |
-
wp_enqueue_style( 'fancybox-ie', self::$plugin_url.'css/jquery.fancybox-ie
|
328 |
$wp_styles->add_data( 'fancybox-ie', 'conditional', 'lt IE 9' );
|
329 |
}
|
330 |
|
@@ -333,7 +333,7 @@ var easy_fancybox_auto=function(){setTimeout(function(){jQuery(\'a[class*="'.$tr
|
|
333 |
$footer = get_option( 'fancybox_noFooter', false ) ? false : true;
|
334 |
|
335 |
// register main fancybox script
|
336 |
-
wp_enqueue_script( 'jquery-fancybox', self::$plugin_url.'js/jquery.fancybox
|
337 |
|
338 |
// jQuery Easing, which is ot needed if jQueryUI Core Effects are loaded
|
339 |
if ( !wp_script_is( 'jquery-effects-core', 'enqueued' ) ) {
|
@@ -350,18 +350,18 @@ var easy_fancybox_auto=function(){setTimeout(function(){jQuery(\'a[class*="'.$tr
|
|
350 |
$add_easing = true;
|
351 |
// enqueue easing?
|
352 |
if ( $add_easing ) {
|
353 |
-
wp_enqueue_script( 'jquery-easing', self::$plugin_url.'js/jquery.easing
|
354 |
}
|
355 |
}
|
356 |
|
357 |
// jQuery Mousewheel, which is not needed if jQueryUI Mouse is loaded
|
358 |
if ( get_option( 'fancybox_mouseWheel', true ) && !wp_script_is( 'jquery-ui-mouse', 'enqueued' ) ) {
|
359 |
-
wp_enqueue_script( 'jquery-mousewheel', self::$plugin_url.'js/jquery.mousewheel
|
360 |
}
|
361 |
|
362 |
// metadata in Miscellaneous settings?
|
363 |
if ( get_option( 'fancybox_metaData' ) ) {
|
364 |
-
wp_enqueue_script( 'jquery-metadata',self::$plugin_url.'js/jquery.metadata
|
365 |
}
|
366 |
|
367 |
if ( get_option( 'fancybox_pre45Compat', false ) || !function_exists( 'wp_add_inline_script' ) ) {
|
322 |
$min = ( defined('WP_DEBUG') && WP_DEBUG ) ? '' : '.min';
|
323 |
|
324 |
// ENQUEUE STYLE
|
325 |
+
wp_enqueue_style( 'fancybox', self::$plugin_url.'css/jquery.fancybox'.$min.'.css', false, FANCYBOX_VERSION, 'screen' );
|
326 |
if ( !empty(self::$inline_style_ie) ) {
|
327 |
+
wp_enqueue_style( 'fancybox-ie', self::$plugin_url.'css/jquery.fancybox-ie'.$min.'.css', false, FANCYBOX_VERSION, 'screen' );
|
328 |
$wp_styles->add_data( 'fancybox-ie', 'conditional', 'lt IE 9' );
|
329 |
}
|
330 |
|
333 |
$footer = get_option( 'fancybox_noFooter', false ) ? false : true;
|
334 |
|
335 |
// register main fancybox script
|
336 |
+
wp_enqueue_script( 'jquery-fancybox', self::$plugin_url.'js/jquery.fancybox'.$min.'.js', $dep, FANCYBOX_VERSION, $footer );
|
337 |
|
338 |
// jQuery Easing, which is ot needed if jQueryUI Core Effects are loaded
|
339 |
if ( !wp_script_is( 'jquery-effects-core', 'enqueued' ) ) {
|
350 |
$add_easing = true;
|
351 |
// enqueue easing?
|
352 |
if ( $add_easing ) {
|
353 |
+
wp_enqueue_script( 'jquery-easing', self::$plugin_url.'js/jquery.easing'.$min.'.js', $dep, EASING_VERSION, $footer );
|
354 |
}
|
355 |
}
|
356 |
|
357 |
// jQuery Mousewheel, which is not needed if jQueryUI Mouse is loaded
|
358 |
if ( get_option( 'fancybox_mouseWheel', true ) && !wp_script_is( 'jquery-ui-mouse', 'enqueued' ) ) {
|
359 |
+
wp_enqueue_script( 'jquery-mousewheel', self::$plugin_url.'js/jquery.mousewheel'.$min.'.js', $dep, MOUSEWHEEL_VERSION, $footer );
|
360 |
}
|
361 |
|
362 |
// metadata in Miscellaneous settings?
|
363 |
if ( get_option( 'fancybox_metaData' ) ) {
|
364 |
+
wp_enqueue_script( 'jquery-metadata',self::$plugin_url.'js/jquery.metadata'.$min.'.js', $dep, METADATA_VERSION, $footer );
|
365 |
}
|
366 |
|
367 |
if ( get_option( 'fancybox_pre45Compat', false ) || !function_exists( 'wp_add_inline_script' ) ) {
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: RavanH
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=ravanhagen%40gmail%2ecom&item_name=Easy%20FancyBox
|
4 |
Tags: fancybox, lightbox, gallery, image, photo, video, flash, overlay, youtube, vimeo, dailymotion, pdf, svg, iframe, swf, jquery, webp
|
5 |
Requires at least: 3.3
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 1.8.
|
8 |
|
9 |
Easily enable the FancyBox jQuery extension on just about all media links. Multi-Site compatible. Supports iFrame and Flash movies.
|
10 |
|
@@ -494,22 +494,25 @@ If you still do not get to see your images in FancyBox, ask on the [Easy FancyBo
|
|
494 |
|
495 |
== Upgrade Notice ==
|
496 |
|
497 |
-
= 1.8.
|
498 |
-
Fix
|
499 |
|
500 |
|
501 |
== Changelog ==
|
502 |
|
503 |
-
= 1.8.
|
504 |
-
*
|
|
|
|
|
|
|
505 |
* Revert to file names without version
|
506 |
|
507 |
= 1.8.13 =
|
508 |
-
*
|
509 |
* Prepare Visual Composer Masonry Grid Gallery compatibility option
|
510 |
|
511 |
= 1.8.11 =
|
512 |
-
*
|
513 |
|
514 |
= 1.8.10 =
|
515 |
* Force default autoselector for galleries
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=ravanhagen%40gmail%2ecom&item_name=Easy%20FancyBox
|
4 |
Tags: fancybox, lightbox, gallery, image, photo, video, flash, overlay, youtube, vimeo, dailymotion, pdf, svg, iframe, swf, jquery, webp
|
5 |
Requires at least: 3.3
|
6 |
+
Tested up to: 5.2
|
7 |
+
Stable tag: 1.8.16
|
8 |
|
9 |
Easily enable the FancyBox jQuery extension on just about all media links. Multi-Site compatible. Supports iFrame and Flash movies.
|
10 |
|
494 |
|
495 |
== Upgrade Notice ==
|
496 |
|
497 |
+
= 1.8.16 =
|
498 |
+
Fix Trying to get property 'ID' of non-object
|
499 |
|
500 |
|
501 |
== Changelog ==
|
502 |
|
503 |
+
= 1.8.16 =
|
504 |
+
* FIX: Trying to get property 'ID' of non-object
|
505 |
+
|
506 |
+
= 1.8.15 =
|
507 |
+
* FIX: inline wrapper nesting issue
|
508 |
* Revert to file names without version
|
509 |
|
510 |
= 1.8.13 =
|
511 |
+
* FIX: version constant issue
|
512 |
* Prepare Visual Composer Masonry Grid Gallery compatibility option
|
513 |
|
514 |
= 1.8.11 =
|
515 |
+
* FIX: Vimeo player direct links breaking
|
516 |
|
517 |
= 1.8.10 =
|
518 |
* Force default autoselector for galleries
|