Changeset 2315778
- Timestamp:
- 06/01/2020 11:16:22 AM (6 years ago)
- Location:
- wp-keyboard-style-key-symbol/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
slcolr.js (modified) (3 diffs)
-
wp-keyboard-style-key-symbols.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-keyboard-style-key-symbol/trunk/readme.txt
r1767511 r2315778 3 3 Tags: keys,buttons,keyboard style keys,key style buttons 4 4 Requires at least: 4.0 5 Tested up to: 4.95 Tested up to: 5.4 6 6 Stable tag: trunk 7 7 License: GPLv2 or later … … 64 64 == Changelog == 65 65 66 = 1.2 = 67 68 * Tested with Latest Wordpress version 69 * PHP Comfortability Check 70 66 71 = 1.1 = 67 72 -
wp-keyboard-style-key-symbol/trunk/slcolr.js
r1642014 r2315778 1 jQuery(document).ready(function($){2 $('.my-color-field').wpColorPicker();3 });4 5 1 var myOptions = { 6 2 // you can declare a default color here, … … 8 4 defaultColor: false, 9 5 // a callback to fire whenever the color changes to a valid color 10 change: function(event, ui) {},6 change: function(event, ui) {}, 11 7 // a callback to fire when the input is emptied or an invalid color 12 8 clear: function() {}, … … 17 13 palettes: true 18 14 }; 19 20 $('.my-color-field').wpColorPicker(myOptions); 15 16 jQuery(document).ready(function($) { 17 $('.my-color-field').wpColorPicker(myOptions); 18 }); 19 20 //jQuery(function($) { 21 //$('.my-color-field').wpColorPicker(myOptions); 22 //}); -
wp-keyboard-style-key-symbol/trunk/wp-keyboard-style-key-symbols.php
r1642112 r2315778 4 4 Plugin URI: https://www.allwebtuts.com/add-keyboard-style-symbol-in-wordpress-posts/ 5 5 Description: A Plugin Which Help us to add the Keyboard Style Key Symbol in our Wordpress posts and Pages. 6 Version: 1. 16 Version: 1.2 7 7 Author: Santhosh veer 8 8 Author URI: https://santhoshveer.com … … 13 13 //define the plugin version 14 14 if (!defined('WP_KEYBOARD_STYLE_VERSION_NUM')){ //define plugin version 15 define('WP_KEYBOARD_STYLE_VERSION_NUM', '1. 1');15 define('WP_KEYBOARD_STYLE_VERSION_NUM', '1.2'); 16 16 } 17 17
Note: See TracChangeset
for help on using the changeset viewer.