Changeset 2604154
- Timestamp:
- 09/24/2021 08:38:10 AM (5 years ago)
- Location:
- shortcode-reference/trunk
- Files:
-
- 2 edited
-
js/shortcode-reference.js (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
shortcode-reference/trunk/js/shortcode-reference.js
r318972 r2604154 6 6 jQuery(document).ready(function(){ 7 7 var els = jQuery('.shortcode_reference_list .shortcode_reference_item'); 8 els. live('mouseover',8 els.on('mouseover', 9 9 function(){ 10 10 jQuery(this).addClass('highlight'); 11 11 }); 12 els. live('mouseout',12 els.on('mouseout', 13 13 function(){ 14 14 jQuery(this).removeClass('highlight'); 15 15 }); 16 els. live('click',16 els.on('click', 17 17 function(){ 18 18 jQuery.post(ajaxurl, -
shortcode-reference/trunk/readme.txt
r1128363 r2604154 4 4 Tags: shortcode, reference, post, page, links 5 5 Requires at least: 3.0 6 Tested up to: 4.1.17 Stable tag: 1. 06 Tested up to: 5.8.1 7 Stable tag: 1.1 8 8 9 9 This plugin will provide a list and details about available shortcodes in your current installment. All when you need it most - when editing content.
Note: See TracChangeset
for help on using the changeset viewer.