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>
24 lines
973 B
JavaScript
24 lines
973 B
JavaScript
'use strict';
|
|
/* eslint-disable es/no-array-prototype-indexof -- required for testing */
|
|
var $ = require('../internals/export');
|
|
var uncurryThis = require('../internals/function-uncurry-this-clause');
|
|
var $indexOf = require('../internals/array-includes').indexOf;
|
|
var arrayMethodIsStrict = require('../internals/array-method-is-strict');
|
|
|
|
var nativeIndexOf = uncurryThis([].indexOf);
|
|
|
|
var NEGATIVE_ZERO = !!nativeIndexOf && 1 / nativeIndexOf([1], 1, -0) < 0;
|
|
var FORCED = NEGATIVE_ZERO || !arrayMethodIsStrict('indexOf');
|
|
|
|
// `Array.prototype.indexOf` method
|
|
// https://tc39.es/ecma262/#sec-array.prototype.indexof
|
|
$({ target: 'Array', proto: true, forced: FORCED }, {
|
|
indexOf: function indexOf(searchElement /* , fromIndex = 0 */) {
|
|
var fromIndex = arguments.length > 1 ? arguments[1] : undefined;
|
|
return NEGATIVE_ZERO
|
|
// convert -0 to +0
|
|
? nativeIndexOf(this, searchElement, fromIndex) || 0
|
|
: $indexOf(this, searchElement, fromIndex);
|
|
}
|
|
});
|