BJ Lazy Load - Version 1.0.4

Version Description

Download this release

Release Info

Developer bjornjohansen
Plugin Icon 128x128 BJ Lazy Load
Version 1.0.4
Comparing to
See all releases

Code changes from version 1.0.3 to 1.0.4

Files changed (3) hide show
  1. bj-lazy-load.php +1 -1
  2. inc/class-bjll.php +5 -0
  3. readme.txt +4 -1
bj-lazy-load.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: BJ Lazy Load
4
  Plugin URI: https://wordpress.org/plugins/bj-lazy-load/
5
  Description: Lazy image loading makes your site load faster and saves bandwidth.
6
- Version: 1.0.3
7
  Author: Bjørn Johansen
8
  Author URI: http://twitter.com/bjornjohansen
9
  Text Domain: bj-lazy-load
3
  Plugin Name: BJ Lazy Load
4
  Plugin URI: https://wordpress.org/plugins/bj-lazy-load/
5
  Description: Lazy image loading makes your site load faster and saves bandwidth.
6
+ Version: 1.0.4
7
  Author: Bjørn Johansen
8
  Author URI: http://twitter.com/bjornjohansen
9
  Text Domain: bj-lazy-load
inc/class-bjll.php CHANGED
@@ -42,6 +42,11 @@ class BJLL {
42
  */
43
  public function init() {
44
 
 
 
 
 
 
45
  self::_bjll_compat();
46
  do_action( 'bjll/compat' );
47
 
42
  */
43
  public function init() {
44
 
45
+ /* We do not touch the feeds */
46
+ if ( is_feed() ) {
47
+ return;
48
+ }
49
+
50
  self::_bjll_compat();
51
  do_action( 'bjll/compat' );
52
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: images, iframes, lazy loading, javascript, optimize, performance, bandwidt
5
  Author URI: http://twitter.com/bjornjohansen
6
  Requires at least: 3.5
7
  Tested up to: 4.3
8
- Stable tag: 1.0.3
9
 
10
  Lazy loading for images and iframes makes your site load faster and saves bandwidth. Uses no external JS libraries and degrades gracefully for non-js users.
11
 
@@ -61,6 +61,9 @@ Check your HTML source or see the magic at work in Web Inspector, FireBug or sim
61
 
62
  == Changelog ==
63
 
 
 
 
64
  = Version 1.0.3 =
65
  * Fixed issue where some images wouldn’t be loaded on load under certain conditions.
66
  * Small performance improvement
5
  Author URI: http://twitter.com/bjornjohansen
6
  Requires at least: 3.5
7
  Tested up to: 4.3
8
+ Stable tag: 1.0.4
9
 
10
  Lazy loading for images and iframes makes your site load faster and saves bandwidth. Uses no external JS libraries and degrades gracefully for non-js users.
11
 
61
 
62
  == Changelog ==
63
 
64
+ = Version 1.0.4 =
65
+ * We do not touch the feeds
66
+
67
  = Version 1.0.3 =
68
  * Fixed issue where some images wouldn’t be loaded on load under certain conditions.
69
  * Small performance improvement