renventura / wp-delete-user-accounts

Allow your WordPress users to manually delete their own accounts.
GNU General Public License v2.0
13 stars 6 forks source link

Enqueue JS file small bug #1

Closed Wooody82 closed 6 years ago

Wooody82 commented 6 years ago

Hi, Thanks for your code :) , There is just small fix To enqueue the wp-delete-user-accounts-js file: u used array( 'jquery', 'sweetalert' ) but it should be array( 'jquery', 'sweetalert-js' ) like this: wp_enqueue_script( 'wp-delete-user-accounts-js', WP_DELETE_USER_ACCOUNTS_PLUGIN_URL . 'assets/js/wp-delete-user-accounts.js', array( 'jquery', 'sweetalert-js' ), WP_DELETE_USER_ACCOUNTS_VERSION, true );

renventura commented 6 years ago

Hey @malasaad82. Ahh, good catch! Thanks for the report. I'll get this updated.

Wooody82 commented 6 years ago

No problem :)