mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 20:03:53 +02:00
Merge pull request #216 from JustinSainton/please-stop-shouting-at-me
Please stop shouting at me. I do hate when my parents shout.
This commit is contained in:
commit
b08802742d
3 changed files with 3 additions and 3 deletions
|
@ -96,7 +96,7 @@ class Plugin_Name_Admin {
|
||||||
* class.
|
* 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 );
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -44,7 +44,7 @@ class Plugin_Name_i18n {
|
||||||
|
|
||||||
load_plugin_textdomain(
|
load_plugin_textdomain(
|
||||||
$this->domain,
|
$this->domain,
|
||||||
FALSE,
|
false,
|
||||||
dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
|
dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -96,7 +96,7 @@ class Plugin_Name_Public {
|
||||||
* class.
|
* 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 );
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue