Image Photo Gallery Final Tiles Grid - Version 3.5.1

Version Description

  • 27/05/2021 =
  • Fixed: Columns layout images not beeing displayed
  • Fixed: on.load jQuery typo
Download this release

Release Info

Developer giucu91
Plugin Icon 128x128 Image Photo Gallery Final Tiles Grid
Version 3.5.1
Comparing to
See all releases

Code changes from version 3.5.0 to 3.5.1

FinalTilesGalleryLite.php CHANGED
@@ -3,7 +3,7 @@
3
  /**
4
  * Plugin Name: Final Tiles Grid Gallery - Image Gallery
5
  * Description: Wordpress Plugin for creating responsive image galleries.
6
- * Version: 3.5.0
7
  * Author: WPChill
8
  * Author URI: https://wpchill.com
9
  * Tested up to: 5.2
@@ -25,7 +25,7 @@
25
  * Original Author: https://profiles.wordpress.org/greentreealbs/
26
  *
27
  */
28
- define( "FTGVERSION", "3.5.0" );
29
  // Create a helper function for easy SDK access.
30
 
31
  if ( !function_exists( 'ftg_fs' ) ) {
3
  /**
4
  * Plugin Name: Final Tiles Grid Gallery - Image Gallery
5
  * Description: Wordpress Plugin for creating responsive image galleries.
6
+ * Version: 3.5.1
7
  * Author: WPChill
8
  * Author URI: https://wpchill.com
9
  * Tested up to: 5.2
25
  * Original Author: https://profiles.wordpress.org/greentreealbs/
26
  *
27
  */
28
+ define( "FTGVERSION", "3.5.1" );
29
  // Create a helper function for easy SDK access.
30
 
31
  if ( !function_exists( 'ftg_fs' ) ) {
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: wpchill, silkalns, freemius
3
  Tags: gallery, grid gallery, best gallery plugin, free gallery, gallery plugin, gallery grid plugin, masonry, photo gallery, image gallery, social gallery, portfolio gallery, lightbox, justified gallery
4
  Requires at least: 5.2
5
- Tested up to: 5.5
6
- Stable tag: 3.5.0
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -124,7 +124,12 @@ Currently galleries made with Envira, FooGallery, Instagram, NextGen, JetPack, M
124
  6. 52 pages documentation
125
 
126
  == Changelog ==
127
- = 3.5.0 - 17/03/2021 =
 
 
 
 
 
128
  - Fixed: After deleting/cloning a gallery the Gallery page is properly reloading.
129
  - Fixed: Caption option on mobile.
130
  - Fixed: Loading bar progress bug.
2
  Contributors: wpchill, silkalns, freemius
3
  Tags: gallery, grid gallery, best gallery plugin, free gallery, gallery plugin, gallery grid plugin, masonry, photo gallery, image gallery, social gallery, portfolio gallery, lightbox, justified gallery
4
  Requires at least: 5.2
5
+ Tested up to: 5.8
6
+ Stable tag: 3.5.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
124
  6. 52 pages documentation
125
 
126
  == Changelog ==
127
+
128
+ = 3.5.1 - 27/05/2021 =
129
+ - Fixed: Columns layout images not beeing displayed
130
+ - Fixed: on.load jQuery typo
131
+
132
+ = 3.5.0 - 27/05/2021 =
133
  - Fixed: After deleting/cloning a gallery the Gallery page is properly reloading.
134
  - Fixed: Caption option on mobile.
135
  - Fixed: Loading bar progress bug.
scripts/jquery.finalTilesGallery.js CHANGED
@@ -685,12 +685,15 @@ var qualifyURL = function (url) {
685
  });
686
  }
687
  var transition = $t.css('transition');
688
- $(window).on('load', function(){
689
- $t.css({
690
- display: 'block',
 
691
  transform: 'scale(1)'
692
- });
693
- });
 
 
694
 
695
  this.columns[slot.col].push(slot.top + t_h + this.settings.margin);
696
 
@@ -884,7 +887,7 @@ var qualifyURL = function (url) {
884
  return this;
885
  };
886
 
887
- $(window).on('loadl', function(){
888
  $('.loading-bar i').css({
889
  width: '100%'
890
  });
685
  });
686
  }
687
  var transition = $t.css('transition');
688
+
689
+ setTimeout( function () {
690
+ $t.css( {
691
+ display : 'block',
692
  transform: 'scale(1)'
693
+ } );
694
+ }, 1 );
695
+
696
+ $t.addClass("ftg-loaded");
697
 
698
  this.columns[slot.col].push(slot.top + t_h + this.settings.margin);
699
 
887
  return this;
888
  };
889
 
890
+ $(window).on('load', function(){
891
  $('.loading-bar i').css({
892
  width: '100%'
893
  });