Plugin Directory

Changeset 2604154


Ignore:
Timestamp:
09/24/2021 08:38:10 AM (5 years ago)
Author:
bartee
Message:

chore: fix jQuery event handling and version bump

Location:
shortcode-reference/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • shortcode-reference/trunk/js/shortcode-reference.js

    r318972 r2604154  
    66jQuery(document).ready(function(){
    77    var els = jQuery('.shortcode_reference_list .shortcode_reference_item');
    8     els.live('mouseover',
     8    els.on('mouseover',
    99        function(){
    1010            jQuery(this).addClass('highlight');
    1111    });
    12     els.live('mouseout',
     12    els.on('mouseout',
    1313        function(){
    1414            jQuery(this).removeClass('highlight');
    1515    });
    16     els.live('click',
     16    els.on('click',
    1717        function(){
    1818            jQuery.post(ajaxurl,
  • shortcode-reference/trunk/readme.txt

    r1128363 r2604154  
    44Tags: shortcode, reference, post, page, links
    55Requires at least: 3.0
    6 Tested up to: 4.1.1
    7 Stable tag: 1.0
     6Tested up to: 5.8.1
     7Stable tag: 1.1
    88
    99This 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.