fix reference to data global (lint)

This commit is contained in:
haszari 2019-02-13 12:19:42 +13:00
parent 42852d7b67
commit 87c0f7c92f
1 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
/* global installed_woo_plugins */
( function( $, woocommerce_admin ) {
( function( $, installed_woo_plugins ) {
$( function() {
if ( 'undefined' === typeof woocommerce_admin ) {
if ( 'undefined' === typeof installed_woo_plugins ) {
return;
}
@ -133,4 +133,4 @@
});
})( jQuery, woocommerce_admin );
})( jQuery, installed_woo_plugins );