Skip to content

Commit a5c909c

Browse files
committed
Release new version 1.9.1
* This maintenance update resolves 2 issues from the v 1.9.0 upgrade * Fix - Set min-width of placeholder to resolve any image tag that does not have width or height not showing the spinner effect. Example Gutenberg image block. * Fix - Update Lazy Load extra script to resolve duplicated call time for images, iframe, videos on viewport
1 parent d39732b commit a5c909c

File tree

6 files changed

+17
-6
lines changed

6 files changed

+17
-6
lines changed

a3-lazy-load.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
Plugin Name: a3 Lazy Load
44
Description: Speed up your site and enhance frontend user's visual experience in PC's, Tablets and mobile with a3 Lazy Load.
5-
Version: 1.9.0
5+
Version: 1.9.1
66
Author: a3rev Software
77
Author URI: https://a3rev.com/
88
Requires at least: 4.0
@@ -32,7 +32,7 @@
3232
define('A3_LAZY_LOAD_IMAGES_URL', A3_LAZY_LOAD_URL . '/assets/images');
3333

3434
define( 'A3_LAZY_LOAD_KEY', 'a3_lazy_load' );
35-
define( 'A3_LAZY_VERSION', '1.9.0' );
35+
define( 'A3_LAZY_VERSION', '1.9.1' );
3636

3737
/**
3838
* Load Localisation files.

assets/css/jquery.lazyloadxt.fadein.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@
22
opacity: 0;
33
background-color: #ffffff;
44
}
5+
figure.wp-block-image img.lazy-hidden {
6+
min-width: 150px;
7+
}
58
.lazy-loaded {
69
-webkit-transition: opacity 0.3s;
710
-moz-transition: opacity 0.3s;
811
-ms-transition: opacity 0.3s;
912
-o-transition: opacity 0.3s;
1013
transition: opacity 0.3s;
11-
opacity: 1;
14+
opacity: 1 !important;
1215
}

assets/css/jquery.lazyloadxt.spinner.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@
44
background-repeat: no-repeat;
55
background-position: 50% 50%;
66
}
7+
figure.wp-block-image img.lazy-hidden {
8+
min-width: 150px;
9+
}

assets/js/jquery.lazyloadxt.extra.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@
226226
}
227227

228228
if (removeNode) {
229-
$data(el, dataLazied, 0);
229+
//$data(el, dataLazied, 0);
230230
elements.splice(i--, 1);
231231
length--;
232232
}

assets/js/jquery.lazyloadxt.extra.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

readme.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: a3rev, a3rev Software, nguyencongtuan
33
Tags: a3 lazy load, Lazy Loading , image lazy load, lazyload
44
Requires at least: 4.5
55
Tested up to: 4.9.8
6-
Stable tag: 1.9.0
6+
Stable tag: 1.9.1
77
License: GPLv3
88
License URI: http://www.gnu.org/licenses/gpl-3.0.html
99

@@ -194,6 +194,11 @@ Filter tags to add to class name of theme to exclude lazy load on images or vide
194194

195195
== Changelog ==
196196

197+
= 1.9.1 - 2018/08/10 =
198+
* This maintenance update resolves 2 issues from the v 1.9.0 upgrade
199+
* Fix - Set min-width of placeholder to resolve any image tag that does not have width or height not showing the spinner effect. Example Gutenberg image block.
200+
* Fix - Update Lazy Load extra script to resolve duplicated call time for images, iframe, videos on viewport
201+
197202
= 1.9.0 - 2018/08/06 =
198203
* This feature upgrade is focused on adding a number of new options for excluding Lazy Load from sections of a site. Compatibility with WordPress 4.9.8, Gutenberg 3.4.0 and WooCommerce 3.4.4
199204
* Feature - Add exclude from Lazy Load by URI

0 commit comments

Comments
 (0)