Version Description
- FIX: Incorrect textarea identifier preventing exclusion save
Download this release
Release Info
Developer | cloughit |
Plugin | Async JavaScript |
Version | 2.17.05.05 |
Comparing to | |
See all releases |
Code changes from version 2.17.05.04 to 2.17.05.05
- async-javascript.php +3 -3
- readme.txt +5 -1
async-javascript.php
CHANGED
@@ -4,7 +4,7 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
4 |
Plugin Name: Async JavaScript
|
5 |
Plugin URI: https://cloughit.com.au/product/async-javascript/
|
6 |
Description: Async JavaScript adds a 'async' or 'defer' attribute to scripts loaded via wp_enqueue_script
|
7 |
-
Version: 2.17.05.
|
8 |
Author: Clough I.T. Solutions
|
9 |
Author URI: http://www.cloughit.com.au/
|
10 |
Text Domain: async-javascript
|
@@ -26,7 +26,7 @@ function aj_admin_init() {
|
|
26 |
define( 'AJ_ADMIN_URL', trailingslashit( admin_url() ) );
|
27 |
define( 'AJ_PLUGIN_URL', trailingslashit( plugin_dir_url( __FILE__ ) ) );
|
28 |
define( 'AJ_PLUGIN_DIR', trailingslashit( plugin_dir_path( __FILE__ ) ) );
|
29 |
-
define( 'AJ_VERSION', '2.17.05.
|
30 |
require_once( AJ_PLUGIN_DIR . 'lib/gtmetrix/class.Services_WTF_Test.php' );
|
31 |
}
|
32 |
/**
|
@@ -780,7 +780,7 @@ function async_javascript_admin() {
|
|
780 |
<hr />
|
781 |
<h3>Script Exclusion</h3>
|
782 |
<p>Please list any scripts which you would like excluded from having <strong>async</strong> or <strong>defer</strong> applied during page load. (comma seperated list eg: jquery.js,jquery-ui.js)</p>
|
783 |
-
<p><label>Exclusions: </label><textarea
|
784 |
<hr />
|
785 |
<h3><?php echo AJ_TITLE; ?> For Plugins</h3>
|
786 |
<p>Although not recommended, some themes / plugins can load JavaScript files without using the <strong><a href="https://codex.wordpress.org/Plugin_API/Action_Reference/wp_enqueue_scripts" target="_blank">wp_enqueue_script</a></strong> function. In some cases this is necessary for the functionality of the theme / plugin.</p>
|
4 |
Plugin Name: Async JavaScript
|
5 |
Plugin URI: https://cloughit.com.au/product/async-javascript/
|
6 |
Description: Async JavaScript adds a 'async' or 'defer' attribute to scripts loaded via wp_enqueue_script
|
7 |
+
Version: 2.17.05.05
|
8 |
Author: Clough I.T. Solutions
|
9 |
Author URI: http://www.cloughit.com.au/
|
10 |
Text Domain: async-javascript
|
26 |
define( 'AJ_ADMIN_URL', trailingslashit( admin_url() ) );
|
27 |
define( 'AJ_PLUGIN_URL', trailingslashit( plugin_dir_url( __FILE__ ) ) );
|
28 |
define( 'AJ_PLUGIN_DIR', trailingslashit( plugin_dir_path( __FILE__ ) ) );
|
29 |
+
define( 'AJ_VERSION', '2.17.05.05' );
|
30 |
require_once( AJ_PLUGIN_DIR . 'lib/gtmetrix/class.Services_WTF_Test.php' );
|
31 |
}
|
32 |
/**
|
780 |
<hr />
|
781 |
<h3>Script Exclusion</h3>
|
782 |
<p>Please list any scripts which you would like excluded from having <strong>async</strong> or <strong>defer</strong> applied during page load. (comma seperated list eg: jquery.js,jquery-ui.js)</p>
|
783 |
+
<p><label>Exclusions: </label><textarea id="aj_exclusions" style="width:95%;"><?php echo $aj_exclusions; ?></textarea></p>
|
784 |
<hr />
|
785 |
<h3><?php echo AJ_TITLE; ?> For Plugins</h3>
|
786 |
<p>Although not recommended, some themes / plugins can load JavaScript files without using the <strong><a href="https://codex.wordpress.org/Plugin_API/Action_Reference/wp_enqueue_scripts" target="_blank">wp_enqueue_script</a></strong> function. In some cases this is necessary for the functionality of the theme / plugin.</p>
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.cloughit.com.au/donate/ (coming soon)
|
|
4 |
Tags: async,javascript,google,pagespeed,js,speed,performance,boost,render,blocking,above-the-fold
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 4.7.4
|
7 |
-
Stable tag: 2.17.05.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -101,6 +101,10 @@ Coming soon!
|
|
101 |
|
102 |
== Changelog ==
|
103 |
|
|
|
|
|
|
|
|
|
104 |
= 2.17.05.04 =
|
105 |
|
106 |
* FIX: CSS / JS not loading
|
4 |
Tags: async,javascript,google,pagespeed,js,speed,performance,boost,render,blocking,above-the-fold
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 4.7.4
|
7 |
+
Stable tag: 2.17.05.05
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
101 |
|
102 |
== Changelog ==
|
103 |
|
104 |
+
= 2.17.05.05 =
|
105 |
+
|
106 |
+
* FIX: Incorrect textarea identifier preventing exclusion save
|
107 |
+
|
108 |
= 2.17.05.04 =
|
109 |
|
110 |
* FIX: CSS / JS not loading
|