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>
23 lines
582 B
HTML
23 lines
582 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Mocha Tests</title>
|
|
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
|
|
</head>
|
|
<body>
|
|
<div id="mocha"></div>
|
|
<script src="../node_modules/mocha/mocha.js"></script>
|
|
<script src="../node_modules/chai/chai.js"></script>
|
|
<script src="../node_modules/sinon/pkg/sinon.js"></script>
|
|
<script>mocha.setup('tdd')</script>
|
|
<script src="../index.js"></script>
|
|
<script src="test.js"></script>
|
|
<script>
|
|
mocha.checkLeaks();
|
|
if (window.mochaPhantomJS) mochaPhantomJS.run();
|
|
else mocha.run();
|
|
</script>
|
|
</body>
|
|
</html>
|