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>
36 lines
768 B
JavaScript
36 lines
768 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.prependHTTP = prependHTTP;
|
|
var _isEmail = require("./is-email");
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
|
|
const USABLE_HREF_REGEXP = /^(?:[a-z]+:|#|\?|\.|\/)/i;
|
|
|
|
/**
|
|
* Prepends "http://" to a url, if it looks like something that is meant to be a TLD.
|
|
*
|
|
* @param {string} url The URL to test.
|
|
*
|
|
* @example
|
|
* ```js
|
|
* const actualURL = prependHTTP( 'wordpress.org' ); // http://wordpress.org
|
|
* ```
|
|
*
|
|
* @return {string} The updated URL.
|
|
*/
|
|
function prependHTTP(url) {
|
|
if (!url) {
|
|
return url;
|
|
}
|
|
url = url.trim();
|
|
if (!USABLE_HREF_REGEXP.test(url) && !(0, _isEmail.isEmail)(url)) {
|
|
return 'http://' + url;
|
|
}
|
|
return url;
|
|
}
|
|
//# sourceMappingURL=prepend-http.js.map
|