Accordion Shortcodes - Version 2.3.1

Version Description

  • Now compatible up to WordPress 4.6
  • FIXED: A bug with a deprecated function in jQuery
Download this release

Release Info

Developer philbuchanan
Plugin Icon 128x128 Accordion Shortcodes
Version 2.3.1
Comparing to
See all releases

Code changes from version 2.3.0 to 2.3.1

Files changed (3) hide show
  1. accordion-shortcodes.php +2 -2
  2. accordion.js +1 -1
  3. readme.txt +9 -2
accordion-shortcodes.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Plugin Name: Accordion Shortcodes
4
  * Description: Shortcodes for creating responsive accordion drop-downs.
5
- * Version: 2.3.0
6
  * Author: Phil Buchanan
7
  * Author URI: http://philbuchanan.com
8
  */
@@ -17,7 +17,7 @@ class Accordion_Shortcodes {
17
  /**
18
  * Current plugin version number
19
  */
20
- private $plugin_version = '2.3.0';
21
 
22
 
23
 
2
  /**
3
  * Plugin Name: Accordion Shortcodes
4
  * Description: Shortcodes for creating responsive accordion drop-downs.
5
+ * Version: 2.3.1
6
  * Author: Phil Buchanan
7
  * Author URI: http://philbuchanan.com
8
  */
17
  /**
18
  * Current plugin version number
19
  */
20
+ private $plugin_version = '2.3.1';
21
 
22
 
23
 
accordion.js CHANGED
@@ -191,7 +191,7 @@
191
 
192
  // Loop through accordion settings objects
193
  // Wait for the entire page to load before loading the accordion
194
- $(window).load(function() {
195
  for (var i = 0; i < accordionShortcodesSettings.length; i += 1) {
196
  settings = accordionShortcodesSettings[i];
197
 
191
 
192
  // Loop through accordion settings objects
193
  // Wait for the entire page to load before loading the accordion
194
+ $(window).on('load', function() {
195
  for (var i = 0; i < accordionShortcodesSettings.length; i += 1) {
196
  settings = accordionShortcodesSettings[i];
197
 
readme.txt CHANGED
@@ -4,8 +4,8 @@ Author URI: http://philbuchanan.com/
4
  Donate Link: http://philbuchanan.com/
5
  Tags: accordion, accordions, shortcodes, responsive accordions, accordions plugin, jquery accordions, accordions short-code, accordions plugin wordpress, accordions plugin jquery
6
  Requires at least: 3.3
7
- Tested up to: 4.5
8
- Stable tag: 2.3.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -198,6 +198,10 @@ For bug reports or feature requests or if you'd like to contribute to the plugin
198
  3. The Accordion Item shortcode insertion dialog box
199
 
200
  == Changelog ==
 
 
 
 
201
  = 2.3.0 =
202
  * NEW: Added setting to set initial state (open or closed) of individual accordion items on page load
203
  * NEW: Added wp-config option to disable the TinyMCE extension
@@ -247,6 +251,9 @@ FIXED: A bug where setting both scroll and openfirst would scroll the window wit
247
  * FIXED: A few incredibly small bugs/annoyances
248
 
249
  == Upgrade Notice ==
 
 
 
250
  = 2.3.0 =
251
  Added setting to set initial state (open or closed) of individual accordion items on page load. Also now compatible up to WordPress 4.5.
252
 
4
  Donate Link: http://philbuchanan.com/
5
  Tags: accordion, accordions, shortcodes, responsive accordions, accordions plugin, jquery accordions, accordions short-code, accordions plugin wordpress, accordions plugin jquery
6
  Requires at least: 3.3
7
+ Tested up to: 4.6
8
+ Stable tag: 2.3.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
198
  3. The Accordion Item shortcode insertion dialog box
199
 
200
  == Changelog ==
201
+ = 2.3.1 =
202
+ * Now compatible up to WordPress 4.6
203
+ * FIXED: A bug with a deprecated function in jQuery
204
+
205
  = 2.3.0 =
206
  * NEW: Added setting to set initial state (open or closed) of individual accordion items on page load
207
  * NEW: Added wp-config option to disable the TinyMCE extension
251
  * FIXED: A few incredibly small bugs/annoyances
252
 
253
  == Upgrade Notice ==
254
+ = 2.3.1 =
255
+ Fixed a minor bug that could cause warnings in the developer console. Also now compatible up to WordPress 4.6.
256
+
257
  = 2.3.0 =
258
  Added setting to set initial state (open or closed) of individual accordion items on page load. Also now compatible up to WordPress 4.5.
259