Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

Commit

Permalink
Bump version and an optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
Remzi1993 committed Sep 14, 2019
1 parent 1f92d6a commit 1183ea0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions jquery-manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* Plugin Name: jQuery Manager for WordPress
* Plugin URI: https://github.com/Remzi1993/jquery-manager
* Description: Manage jQuery and jQuery Migrate, activate a specific jQuery and/or jQuery Migrate version. The ultimate jQuery debugging tool for WordPress. This plugin is an open source project, made possible by your contribution (code). Development is done on GitHub.
* Version: 1.10.3
* Version: 1.10.4
* Author: Remzi Cavdar
* Author URI: https://twitter.com/remzicavdar
* License: GPLv3
Expand Down Expand Up @@ -634,7 +634,8 @@ function wp_jquery_manager_plugin_admin_scripts($hook) {
}

// Register styles and scripts
add_action( 'wp_enqueue_scripts', 'wp_jquery_manager_plugin_front_end_scripts' );
add_action( 'wp_enqueue_scripts', 'wp_jquery_manager_plugin_front_end_scripts', 1 );
add_action( 'login_enqueue_scripts', 'wp_jquery_manager_plugin_front_end_scripts', 1 );
add_action( 'admin_enqueue_scripts', 'wp_jquery_manager_plugin_admin_scripts' );


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery-manager",
"version": "1.10.3",
"version": "1.10.4",
"description": "Manage jQuery and jQuery Migrate on a WordPress website, select a specific jQuery and/or jQuery Migrate version. The ultimate jQuery debugging tool for WordPress. This plugin is a open source project, made possible by your contribution (code). Development is done on GitHub.",
"main": "jquery-manager.php",
"directories": {
Expand Down

0 comments on commit 1183ea0

Please sign in to comment.