Skip to content

Commit f7ed080

Browse files
committed
4.3.8.2 - Repeater field JS fix.
Signed-off-by: Kev Provance <[email protected]>
1 parent f02f782 commit f7ed080

File tree

7 files changed

+9
-6
lines changed

7 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Redux Changelog
22

3+
## 4.3.8.2
4+
* Fixed: Repeater field JavaScript not loaded due to missing enqueue dependency.
5+
36
## 4.3.8.1
47
* Restored: Repeater field.
58

redux-core/assets/css/redux-fields.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

redux-core/assets/css/redux-fields.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

redux-core/framework.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
require_once dirname( __FILE__ ) . '/class-redux-core.php';
3131

32-
Redux_Core::$version = '4.3.8.1';
32+
Redux_Core::$version = '4.3.8.2';
3333
Redux_Core::$redux_path = dirname( __FILE__ );
3434

3535
/** @noinspection PhpUnhandledExceptionInspection */

redux-core/inc/extensions/repeater/class-redux-extension-repeater.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Redux_Extension_Repeater extends Redux_Extension_Abstract {
2525
*
2626
* @var string
2727
*/
28-
public static $version = '4.3.7';
28+
public static $version = '4.3.9';
2929

3030
/**
3131
* Extension friendly name.

redux-core/inc/extensions/repeater/repeater/class-redux-repeater.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ public function enqueue() {
256256
'redux-field-repeater-js',
257257
// phpcs:ignore WordPress.NamingConventions.ValidHookName
258258
$this->url . 'redux-repeater' . $min . '.js',
259-
array( 'jquery', 'jquery-ui-core', 'jquery-ui-accordion', 'jquery-ui-sortable', 'wp-color-picker' ),
259+
array( 'jquery', 'jquery-ui-core', 'jquery-ui-accordion', 'jquery-ui-sortable', 'wp-color-picker', 'redux-js' ),
260260
Redux_Extension_Repeater::$version,
261261
true
262262
);

redux-framework.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Plugin URI: http://wordpress.org/plugins/redux-framework
99
* GitHub URI: reduxframework/redux-framework
1010
* Description: Build better sites in WordPress fast!
11-
* Version: 4.3.8.1
11+
* Version: 4.3.8.2
1212
* Requires at least: 4.0
1313
* Requires PHP: 7.1
1414
* Author: Extendify

0 commit comments

Comments
 (0)