woocommerce/plugins/woocommerce-admin/client/wp-admin-scripts
Jeff Stieler c2020507e3 Decouple Navigation from `wcSettings`. (https://github.com/woocommerce/woocommerce-admin/pull/3294)
* Move getAdminLink to wc-admin-settings.

* Add changelog entries.

* Look for `getAdminLink()` in @woocommerce/settings first.
2019-11-22 12:07:26 -05:00
..
onboarding-homepage-notice Decouple Navigation from `wcSettings`. (https://github.com/woocommerce/woocommerce-admin/pull/3294) 2019-11-22 12:07:26 -05:00
onboarding-product-notice Decouple Navigation from `wcSettings`. (https://github.com/woocommerce/woocommerce-admin/pull/3294) 2019-11-22 12:07:26 -05:00
onboarding-tax-notice Decouple Navigation from `wcSettings`. (https://github.com/woocommerce/woocommerce-admin/pull/3294) 2019-11-22 12:07:26 -05:00
README.md Onboarding: Add return to task list after saving taxes (https://github.com/woocommerce/woocommerce-admin/pull/3170) 2019-11-07 08:17:46 +08:00

README.md

Scripts located in this directory are meant to be loaded on wp-admin pages outside the context of WooCommerce Admin, such as the post editor. Adding the script name to wpAdminScripts in the Webpack config will automatically build these scripts.

Scripts must be manually enqueued with any neccessary dependencies. For example, onboarding-homepage-notice uses the WooCommerce navigation package:

wp_enqueue_script( 'onboarding-homepage-notice', Loader::get_url( 'wp-scripts/onboarding-homepage-notice.js' ), array( 'wc-navigation' ) );