Shortcodes by Angie Makes - Version 1.62

Version Description

Download this release

Release Info

Developer cbaldelomar
Plugin Icon wp plugin Shortcodes by Angie Makes
Version 1.62
Comparing to
See all releases

Code changes from version 1.61 to 1.62

README.md CHANGED
@@ -66,6 +66,10 @@ Use the shortcode manager in the TinyMCE text editor
66
 
67
  ## Changelog ##
68
 
 
 
 
 
69
  ### Version 1.61
70
 
71
  * Fixed bug with print share link
66
 
67
  ## Changelog ##
68
 
69
+ ### Version 1.62
70
+
71
+ * Fixed bug with accordion and tabs refreshing when inside customizer preview
72
+
73
  ### Version 1.61
74
 
75
  * Fixed bug with print share link
includes/js/accordion.js CHANGED
@@ -46,6 +46,7 @@
46
 
47
  $( document.body ).trigger( 'wcs-toggled' );
48
 
 
49
  });
50
  });
51
  });
46
 
47
  $( document.body ).trigger( 'wcs-toggled' );
48
 
49
+ return false;
50
  });
51
  });
52
  });
includes/js/tabs.js CHANGED
@@ -25,6 +25,7 @@
25
 
26
  $( document.body ).trigger( 'wcs-toggled' );
27
 
 
28
  });
29
  });
30
  });
25
 
26
  $( document.body ).trigger( 'wcs-toggled' );
27
 
28
+ return false;
29
  });
30
  });
31
  });
readme.txt CHANGED
@@ -88,6 +88,10 @@ Use the shortcode manager in the TinyMCE text editor
88
 
89
  == Changelog ==
90
 
 
 
 
 
91
  = Version 1.61 =
92
 
93
  * Fixed bug with print share link
88
 
89
  == Changelog ==
90
 
91
+ = Version 1.62 =
92
+
93
+ * Fixed bug with accordion and tabs refreshing when inside customizer preview
94
+
95
  = Version 1.61 =
96
 
97
  * Fixed bug with print share link
wc-shortcodes.php CHANGED
@@ -5,11 +5,11 @@ Plugin URI: http://webplantmedia.com/starter-themes/wordpresscanvas/features/sho
5
  Description: A family of shortcodes to enhance site functionality.
6
  Author: Chris Baldelomar
7
  Author URI: http://webplantmedia.com/
8
- Version: 1.61
9
  License: GPLv2 or later
10
  */
11
 
12
- define( 'WC_SHORTCODES_VERSION', '1.61' );
13
  define( 'WC_SHORTCODES_PREFIX', 'wc_shortcodes_' );
14
  define( '_WC_SHORTCODES_PREFIX', '_wc_shortcodes_' );
15
  define( 'WC_SHORTCODES_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
5
  Description: A family of shortcodes to enhance site functionality.
6
  Author: Chris Baldelomar
7
  Author URI: http://webplantmedia.com/
8
+ Version: 1.62
9
  License: GPLv2 or later
10
  */
11
 
12
+ define( 'WC_SHORTCODES_VERSION', '1.62' );
13
  define( 'WC_SHORTCODES_PREFIX', 'wc_shortcodes_' );
14
  define( '_WC_SHORTCODES_PREFIX', '_wc_shortcodes_' );
15
  define( 'WC_SHORTCODES_PLUGIN_URL', plugin_dir_url( __FILE__ ) );