Add coexistence checks to all enqueue methods to prevent loading both React and Grid.js assets simultaneously. Changes: - ReactAdmin.php: Only enqueue React assets when ?react=1 - Init.php: Skip Grid.js when React active on admin pages - Form.php, Coupon.php, Access.php: Restore classic assets when ?react=0 - Customer.php, Product.php, License.php: Add coexistence checks Now the toggle between Classic and React versions works correctly. Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
20 lines
901 B
JavaScript
20 lines
901 B
JavaScript
'use strict';
|
|
var $ = require('../internals/export');
|
|
var $reduceRight = require('../internals/array-reduce').right;
|
|
var arrayMethodIsStrict = require('../internals/array-method-is-strict');
|
|
var CHROME_VERSION = require('../internals/environment-v8-version');
|
|
var IS_NODE = require('../internals/environment-is-node');
|
|
|
|
// Chrome 80-82 has a critical bug
|
|
// https://bugs.chromium.org/p/chromium/issues/detail?id=1049982
|
|
var CHROME_BUG = !IS_NODE && CHROME_VERSION > 79 && CHROME_VERSION < 83;
|
|
var FORCED = CHROME_BUG || !arrayMethodIsStrict('reduceRight');
|
|
|
|
// `Array.prototype.reduceRight` method
|
|
// https://tc39.es/ecma262/#sec-array.prototype.reduceright
|
|
$({ target: 'Array', proto: true, forced: FORCED }, {
|
|
reduceRight: function reduceRight(callbackfn /* , initialValue */) {
|
|
return $reduceRight(this, callbackfn, arguments.length, arguments.length > 1 ? arguments[1] : undefined);
|
|
}
|
|
});
|