Version Description
- Fix: CSS & JavaScript Toolbox not showing
Download this release
Release Info
Developer | wipeoutmedia |
Plugin | CSS & JavaScript Toolbox |
Version | 8.4.1 |
Comparing to | |
See all releases |
Code changes from version 8.4 to 8.4.1
css-js-toolbox.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: CSS & JavaScript Toolbox
|
4 |
Plugin URI: http://css-javascript-toolbox.com/
|
5 |
Description: Easily add CSS, JavaScript, HTML and PHP code to unique CJT code blocks and assign them anywhere on your website.
|
6 |
-
Version: 8.4
|
7 |
Author: Wipeout Media
|
8 |
Author URI: http://css-javascript-toolbox.com
|
9 |
License:
|
3 |
Plugin Name: CSS & JavaScript Toolbox
|
4 |
Plugin URI: http://css-javascript-toolbox.com/
|
5 |
Description: Easily add CSS, JavaScript, HTML and PHP code to unique CJT code blocks and assign them anywhere on your website.
|
6 |
+
Version: 8.4.1
|
7 |
Author: Wipeout Media
|
8 |
Author URI: http://css-javascript-toolbox.com
|
9 |
License:
|
framework/ServicesAPI/Store.php
CHANGED
@@ -160,7 +160,7 @@ class CJTStore extends CJTServicesClientModule {
|
|
160 |
*/
|
161 |
public function hasUpdate() {
|
162 |
# Get Version
|
163 |
-
$pluginUpdate = $this->
|
164 |
$version = $pluginUpdate[ 'currentVersion' ];
|
165 |
# Get Plugin version
|
166 |
$pluginData = get_plugin_data( $this->getPluginFile() );
|
160 |
*/
|
161 |
public function hasUpdate() {
|
162 |
# Get Version
|
163 |
+
$pluginUpdate = $this->getPluginInformation();
|
164 |
$version = $pluginUpdate[ 'currentVersion' ];
|
165 |
# Get Plugin version
|
166 |
$pluginData = get_plugin_data( $this->getPluginFile() );
|
includes/html/CJTDeadNotice.html.php
DELETED
@@ -1,56 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
*
|
4 |
-
*/
|
5 |
-
|
6 |
-
defined('ABSPATH') or die(-1);
|
7 |
-
|
8 |
-
?>
|
9 |
-
<div id="cjt-dead-notice" class="notice">
|
10 |
-
<h1>IMPORTANT NOTE</h1>
|
11 |
-
<p>The CSS & JavaScript Toolbox plugin on WordPress.org is no longer supported. This has been replaced by our new code management plugin called Easy Code Manager, which you can download for free here: <a href="https://wordpress.org/plugins/easy-code-manager" target="_blank">Easy Code Manager on WordPress.org</a></p>
|
12 |
-
<p>This free version has been fully redesigned and does not have a number of features you would expect in CSS & JavaScript Toolbox. That said, you may wish to stay on CSS & JavaScript Toolbox unless you intend to update to our premium plugin called: <a href="https://easy-code-manager.com" target="_blank">Easy Code Manager PLUS</a>.</p>
|
13 |
-
|
14 |
-
<br>
|
15 |
-
<a style="float: right;" href="#">Dismiss</a>
|
16 |
-
<br>
|
17 |
-
|
18 |
-
</div>
|
19 |
-
|
20 |
-
<script type="text/javascript">
|
21 |
-
|
22 |
-
/**
|
23 |
-
*
|
24 |
-
*/
|
25 |
-
(function($)
|
26 |
-
{
|
27 |
-
|
28 |
-
$('#cjt-dead-notice > a').click(
|
29 |
-
|
30 |
-
function()
|
31 |
-
{
|
32 |
-
|
33 |
-
if (!confirm('By clicking dismiss you force this message to don\'t display again. Are your sure?'))
|
34 |
-
{
|
35 |
-
return false;
|
36 |
-
}
|
37 |
-
|
38 |
-
$.post(ajaxurl,
|
39 |
-
{
|
40 |
-
action : 'cjt-dead-notice'
|
41 |
-
}
|
42 |
-
).done(
|
43 |
-
|
44 |
-
function()
|
45 |
-
{
|
46 |
-
$('#cjt-dead-notice').hide();
|
47 |
-
}
|
48 |
-
);
|
49 |
-
|
50 |
-
return false;
|
51 |
-
}
|
52 |
-
|
53 |
-
);
|
54 |
-
|
55 |
-
})(jQuery);
|
56 |
-
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -2,13 +2,13 @@
|
|
2 |
Contributors: wipeoutmedia
|
3 |
Author URL: http://css-javascript-toolbox.com
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=EWDWF75JHT9Q6
|
5 |
-
Tags:
|
6 |
License: GPLv2 or later
|
7 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
8 |
Requires at least: 3.9
|
9 |
Requires PHP: 5.4
|
10 |
Tested up to: 4.9.4
|
11 |
-
Stable tag: 8.4
|
12 |
|
13 |
Easily add CSS, JavaScript, HTML and PHP code to unique CJT code blocks and assign them anywhere on your website.
|
14 |
|
@@ -153,6 +153,9 @@ Due to the overwhelming amount of emails we get for users requesting support for
|
|
153 |
|
154 |
== Changelog ==
|
155 |
|
|
|
|
|
|
|
156 |
= 8.4 =
|
157 |
* Enhancement: START and END comments for CJT Assignments, CJT Shortcodes, and CJT Metabox code blocks. You can now go into the Page Source and perform a search for these comments to quickly find your code block within the source code.
|
158 |
* Removed: Admin notice “CJT plugin is no longer supported"
|
2 |
Contributors: wipeoutmedia
|
3 |
Author URL: http://css-javascript-toolbox.com
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=EWDWF75JHT9Q6
|
5 |
+
Tags: CSS, JavaScript, PHP, scripts, code
|
6 |
License: GPLv2 or later
|
7 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
8 |
Requires at least: 3.9
|
9 |
Requires PHP: 5.4
|
10 |
Tested up to: 4.9.4
|
11 |
+
Stable tag: 8.4.1
|
12 |
|
13 |
Easily add CSS, JavaScript, HTML and PHP code to unique CJT code blocks and assign them anywhere on your website.
|
14 |
|
153 |
|
154 |
== Changelog ==
|
155 |
|
156 |
+
= 8.4.1 =
|
157 |
+
* Fix: CSS & JavaScript Toolbox not showing
|
158 |
+
|
159 |
= 8.4 =
|
160 |
* Enhancement: START and END comments for CJT Assignments, CJT Shortcodes, and CJT Metabox code blocks. You can now go into the Page Source and perform a search for these comments to quickly find your code block within the source code.
|
161 |
* Removed: Admin notice “CJT plugin is no longer supported"
|
views/blocks/manager/public/images/css-js-toolbox-logo.png
ADDED
Binary file
|