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>
15 lines
607 B
JavaScript
15 lines
607 B
JavaScript
'use strict';
|
|
// `Math.scale` method implementation
|
|
// https://rwaldron.github.io/proposal-math-extensions/
|
|
module.exports = function scale(x, inLow, inHigh, outLow, outHigh) {
|
|
var nx = +x;
|
|
var nInLow = +inLow;
|
|
var nInHigh = +inHigh;
|
|
var nOutLow = +outLow;
|
|
var nOutHigh = +outHigh;
|
|
// eslint-disable-next-line no-self-compare -- NaN check
|
|
if (nx !== nx || nInLow !== nInLow || nInHigh !== nInHigh || nOutLow !== nOutLow || nOutHigh !== nOutHigh) return NaN;
|
|
if (nx === Infinity || nx === -Infinity) return nx;
|
|
return (nx - nInLow) * (nOutHigh - nOutLow) / (nInHigh - nInLow) + nOutLow;
|
|
};
|