Changeset 2041078
- Timestamp:
- 02/28/2019 03:17:09 AM (7 years ago)
- Location:
- site-announcements/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
admin/js/cw-site-announcements-admin.js (modified) (1 diff)
-
includes/class-cw-site-announcements.php (modified) (1 diff)
-
site-announcements.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
site-announcements/trunk/README.txt
r1756534 r2041078 4 4 Tags: announcements, news, users, messages 5 5 Requires at least: 4.0 6 Tested up to: 4.8.26 Tested up to: 5.1 7 7 Stable tag: trunk 8 8 License: GPLv2 or later … … 44 44 == Changelog == 45 45 46 = 1.0.4 = 47 * Fixes color-picker issue 48 46 49 = 1.0.3 = 47 50 * Fixes custom text color issue when content is empty -
site-announcements/trunk/admin/js/cw-site-announcements-admin.js
r1702794 r2041078 2 2 'use strict'; 3 3 4 $(function() { 5 $('.color-picker').wpColorPicker(); 4 $(document).ready( function(e) { 5 $(function() { 6 $('.color-picker').wpColorPicker(); 7 }); 8 9 $('#cw_enable_url').on('change', function(e) { 10 $('#cw_announcement_url').val(''); 11 $('.cw_announcement_url').toggle(); 12 }); 13 14 $('#cw_is_announcement_closable').on('change', function(e) { 15 $('.cw_closable_settings').toggle(); 16 }); 6 17 }); 7 18 8 $('#cw_enable_url').on('change', function(e) {9 $('#cw_announcement_url').val('');10 $('.cw_announcement_url').toggle();11 });12 13 $('#cw_is_announcement_closable').on('change', function(e) {14 $('.cw_closable_settings').toggle();15 });16 17 18 19 })( jQuery ); -
site-announcements/trunk/includes/class-cw-site-announcements.php
r1756534 r2041078 70 70 71 71 $this->plugin_name = 'cw-site-announcements'; 72 $this->version = '1.0. 3';72 $this->version = '1.0.4'; 73 73 74 74 $this->load_dependencies(); -
site-announcements/trunk/site-announcements.php
r1756534 r2041078 16 16 * Plugin Name: Site Announcements 17 17 * Plugin URI: https://codewrangler.io 18 * Description: This is a short description of what the plugin does. It's displayed in the WordPress admin area.19 * Version: 1.0. 318 * Description: Site Announcements allows you to broadcast site-wide messages to your visitors 19 * Version: 1.0.4 20 20 * Author: CodeWrangler, Inc. 21 21 * Author URI: https://codewrangler.io
Note: See TracChangeset
for help on using the changeset viewer.