Rename and tweak how js is registered.
Thanks @claudiosmweb for the suggestion to match existing conventions.
This commit is contained in:
parent
0ed5f40fa2
commit
a63ef876d7
|
@ -91,6 +91,7 @@ class WC_Admin_Assets {
|
||||||
wp_register_script( 'qrcode', WC()->plugin_url() . '/assets/js/jquery-qrcode/jquery.qrcode' . $suffix . '.js', array( 'jquery' ), WC_VERSION );
|
wp_register_script( 'qrcode', WC()->plugin_url() . '/assets/js/jquery-qrcode/jquery.qrcode' . $suffix . '.js', array( 'jquery' ), WC_VERSION );
|
||||||
wp_register_script( 'stupidtable', WC()->plugin_url() . '/assets/js/stupidtable/stupidtable' . $suffix . '.js', array( 'jquery' ), WC_VERSION );
|
wp_register_script( 'stupidtable', WC()->plugin_url() . '/assets/js/stupidtable/stupidtable' . $suffix . '.js', array( 'jquery' ), WC_VERSION );
|
||||||
wp_register_script( 'serializejson', WC()->plugin_url() . '/assets/js/jquery-serializejson/jquery.serializejson' . $suffix . '.js', array( 'jquery' ), '2.6.1' );
|
wp_register_script( 'serializejson', WC()->plugin_url() . '/assets/js/jquery-serializejson/jquery.serializejson' . $suffix . '.js', array( 'jquery' ), '2.6.1' );
|
||||||
|
wp_register_script( 'wc-settings-tax', WC()->plugin_url() . '/assets/js/admin/settings-views-html-settings-tax.js', array( 'jquery', 'wp-util' ), WC_VERSION );
|
||||||
|
|
||||||
// Chosen is @deprecated (2.3) in favour of select2, but is registered for backwards compat
|
// Chosen is @deprecated (2.3) in favour of select2, but is registered for backwards compat
|
||||||
wp_register_script( 'ajax-chosen', WC()->plugin_url() . '/assets/js/chosen/ajax-chosen.jquery' . $suffix . '.js', array( 'jquery', 'chosen' ), WC_VERSION );
|
wp_register_script( 'ajax-chosen', WC()->plugin_url() . '/assets/js/chosen/ajax-chosen.jquery' . $suffix . '.js', array( 'jquery', 'chosen' ), WC_VERSION );
|
||||||
|
|
|
@ -20,8 +20,7 @@ foreach ( $locations as $location ) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Localize and enqueue our js.
|
// Localize and enqueue our js.
|
||||||
wp_register_script( 'htmlSettingsTaxLocalizeScript', WC()->plugin_url() . '/assets/js/admin/settings_views_html-settings-tax.js', array( 'jquery', 'wp-util' ), WC_VERSION );
|
wp_localize_script( 'wc-settings-tax', 'htmlSettingsTaxLocalizeScript', array(
|
||||||
wp_localize_script( 'htmlSettingsTaxLocalizeScript', 'htmlSettingsTaxLocalizeScript', array(
|
|
||||||
'current_class' => $current_class,
|
'current_class' => $current_class,
|
||||||
'rates' => $rates,
|
'rates' => $rates,
|
||||||
'page' => $page,
|
'page' => $page,
|
||||||
|
@ -30,7 +29,7 @@ wp_localize_script( 'htmlSettingsTaxLocalizeScript', 'htmlSettingsTaxLocalizeScr
|
||||||
|
|
||||||
),
|
),
|
||||||
) );
|
) );
|
||||||
wp_enqueue_script( 'htmlSettingsTaxLocalizeScript' );
|
wp_enqueue_script( 'wc-settings-tax' );
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<h3><?php printf( __( 'Tax Rates for the "%s" Class', 'woocommerce' ), $current_class ? esc_html( $current_class ) : __( 'Standard', 'woocommerce' ) ); ?></h3>
|
<h3><?php printf( __( 'Tax Rates for the "%s" Class', 'woocommerce' ), $current_class ? esc_html( $current_class ) : __( 'Standard', 'woocommerce' ) ); ?></h3>
|
||||||
|
|
Loading…
Reference in New Issue