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>
30 lines
663 B
HTML
30 lines
663 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Delegate</title>
|
|
</head>
|
|
<body>
|
|
<!-- 1. Write some markup -->
|
|
<ul>
|
|
<li><button>Item 1</button></li>
|
|
<li><button>Item 2</button></li>
|
|
<li><button>Item 3</button></li>
|
|
<li><button>Item 4</button></li>
|
|
<li><button>Item 5</button></li>
|
|
</ul>
|
|
|
|
<!-- 2. Include library -->
|
|
<script src="../dist/delegate.js"></script>
|
|
|
|
<!-- 3. Add event delegation -->
|
|
<script>
|
|
var ul = document.querySelector('ul');
|
|
|
|
delegate(ul, 'button', 'click', function(e) {
|
|
console.log(e.target);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|