Removed extra check if the code is executed within admin.

This commit is contained in:
Peter Fabian 2019-06-20 14:07:52 +02:00
parent 91839ce078
commit a6a26633a4
1 changed files with 22 additions and 24 deletions

View File

@ -198,7 +198,6 @@ class WC_Shipping_Free_Shipping extends WC_Shipping_Method {
* Static so that's enqueued only once.
*/
public static function enqueue_admin_js() {
if ( is_admin() ) {
wc_enqueue_js(
"jQuery( function( $ ) {
function wcFreeShippingShowHideMinAmountField( el ) {
@ -226,4 +225,3 @@ class WC_Shipping_Free_Shipping extends WC_Shipping_Method {
);
}
}
}