Galleries by Angie Makes - Version 1.58

Version Description

Download this release

Release Info

Developer cbaldelomar
Plugin Icon wp plugin Galleries by Angie Makes
Version 1.58
Comparing to
See all releases

Code changes from version 1.57 to 1.58

README.md CHANGED
@@ -67,6 +67,10 @@ For more tutorials on our gallery plugin, go to our knowledge base.
67
 
68
  ## Changelog ##
69
 
 
 
 
 
70
  ### Version 1.57 ###
71
 
72
  * Updated WPC Settings Framework to 1.0.5
67
 
68
  ## Changelog ##
69
 
70
+ ### Version 1.58 ###
71
+
72
+ * removed wcs-trigger check
73
+
74
  ### Version 1.57 ###
75
 
76
  * Updated WPC Settings Framework to 1.0.5
includes/js/gallery-carousel.js CHANGED
@@ -100,9 +100,4 @@
100
  initGallery();
101
  });
102
 
103
- // Triggers re-layout on accordion, tabs, toggle
104
- $( document.body ).on( 'wcs-toggled', function () {
105
- initGallery();
106
- });
107
-
108
  } )( jQuery );
100
  initGallery();
101
  });
102
 
 
 
 
 
 
103
  } )( jQuery );
includes/js/gallery-masonry.js CHANGED
@@ -108,9 +108,4 @@
108
  initGallery();
109
  });
110
 
111
- // Triggers re-layout on accordion, tabs, toggle
112
- $( document.body ).on( 'wcs-toggled', function () {
113
- initGallery();
114
- });
115
-
116
  } )( jQuery );
108
  initGallery();
109
  });
110
 
 
 
 
 
 
111
  } )( jQuery );
includes/js/gallery-popup.js CHANGED
@@ -48,9 +48,4 @@
48
  galleryPopup();
49
  });
50
 
51
- // Triggers re-layout on accordion, tabs, toggle
52
- // $( document.body ).on( 'wcs-toggled', function () {
53
- // galleryPopup();
54
- // });
55
-
56
  } )( jQuery );
48
  galleryPopup();
49
  });
50
 
 
 
 
 
 
51
  } )( jQuery );
includes/js/gallery-slider.js CHANGED
@@ -115,9 +115,4 @@
115
  initGallery();
116
  });
117
 
118
- // Triggers re-layout on accordion, tabs, toggle
119
- $( document.body ).on( 'wcs-toggled', function () {
120
- initGallery();
121
- });
122
-
123
  } )( jQuery );
115
  initGallery();
116
  });
117
 
 
 
 
 
 
118
  } )( jQuery );
includes/js/gallery.js CHANGED
@@ -314,9 +314,4 @@
314
  initGallery();
315
  });
316
 
317
- // Triggers re-layout on accordion, tabs, toggle
318
- $( document.body ).on( 'wcs-toggled', function () {
319
- initGallery();
320
- });
321
-
322
  } )( jQuery );
314
  initGallery();
315
  });
316
 
 
 
 
 
 
317
  } )( jQuery );
readme.txt CHANGED
@@ -67,6 +67,10 @@ For more tutorials on our gallery plugin, go to our knowledge base.
67
 
68
  == Changelog ==
69
 
 
 
 
 
70
  = Version 1.57 =
71
 
72
  * Updated WPC Settings Framework to 1.0.5
67
 
68
  == Changelog ==
69
 
70
+ = Version 1.58 =
71
+
72
+ * removed wcs-trigger check
73
+
74
  = Version 1.57 =
75
 
76
  * Updated WPC Settings Framework to 1.0.5
wc-gallery.php CHANGED
@@ -5,11 +5,11 @@ Plugin URI: http://angiemakes.com/feminine-wordpress-blog-themes-women/
5
  Description: Extend WordPress galleries to display masonry gallery, carousel gallery, and slider gallery
6
  Author: Chris Baldelomar
7
  Author URI: http://angiemakes.com/
8
- Version: 1.57
9
  License: GPLv2 or later
10
  */
11
 
12
- define( 'WC_GALLERY_VERSION', '1.57' );
13
  define( 'WC_GALLERY_PREFIX', 'wc_gallery_' );
14
  define( '_WC_GALLERY_PREFIX', '_wc_gallery_' );
15
  define( 'WC_GALLERY_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
5
  Description: Extend WordPress galleries to display masonry gallery, carousel gallery, and slider gallery
6
  Author: Chris Baldelomar
7
  Author URI: http://angiemakes.com/
8
+ Version: 1.58
9
  License: GPLv2 or later
10
  */
11
 
12
+ define( 'WC_GALLERY_VERSION', '1.58' );
13
  define( 'WC_GALLERY_PREFIX', 'wc_gallery_' );
14
  define( '_WC_GALLERY_PREFIX', '_wc_gallery_' );
15
  define( 'WC_GALLERY_PLUGIN_URL', plugin_dir_url( __FILE__ ) );