1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-05-02 11:23:15 +03:00

Please stop shouting at me. I do hate when my parents shout.

But in all seriousness, shouting types is bad form.
This commit is contained in:
Justin Sainton 2014-09-10 21:19:37 -07:00
parent f4bbb821c2
commit 50bc541455
3 changed files with 3 additions and 3 deletions

View file

@ -96,7 +96,7 @@ class Plugin_Name_Admin {
* class.
*/
wp_enqueue_script( $this->name, plugin_dir_url( __FILE__ ) . 'js/plugin-name-admin.js', array( 'jquery' ), $this->version, FALSE );
wp_enqueue_script( $this->name, plugin_dir_url( __FILE__ ) . 'js/plugin-name-admin.js', array( 'jquery' ), $this->version, false );
}

View file

@ -44,7 +44,7 @@ class Plugin_Name_i18n {
load_plugin_textdomain(
$this->domain,
FALSE,
false,
dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
);

View file

@ -96,7 +96,7 @@ class Plugin_Name_Public {
* class.
*/
wp_enqueue_script( $this->name, plugin_dir_url( __FILE__ ) . 'js/plugin-name-public.js', array( 'jquery' ), $this->version, FALSE );
wp_enqueue_script( $this->name, plugin_dir_url( __FILE__ ) . 'js/plugin-name-public.js', array( 'jquery' ), $this->version, false );
}