Skip to content

Commit

Permalink
Removed 'common' dependecy from notices script. Fixes #1.
Browse files Browse the repository at this point in the history
  • Loading branch information
themeblvd committed Jan 22, 2018
1 parent 46bae3c commit a75fef8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/plugin-manager/class-theme-blvd-plugin-notices.php
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ public function add_assets() {
wp_enqueue_script(
'themeblvd-plugin-notices',
esc_url( $this->args['package_url'] . "/assets/js/plugin-notices$suffix.js" ),
array( 'jquery', 'common' )
array( 'jquery' )
);

}
Expand Down
2 changes: 1 addition & 1 deletion src/plugin-manager/class-my-plugin-notices.php
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ public function add_assets() {
wp_enqueue_script(
'my_namespace-plugin-notices',
esc_url( $this->args['package_url'] . "/assets/js/plugin-notices$suffix.js" ),
array( 'jquery', 'common' )
array( 'jquery' )
);

}
Expand Down

0 comments on commit a75fef8

Please sign in to comment.