Make WordPress Core

Ticket #27127: plugins.diff

File plugins.diff, 956 bytes (added by enej, 11 years ago)

Inline JavaScript on the plugins page.

  • wp-admin/plugins.php

     
    444444
    445445<?php $wp_list_table->display(); ?>
    446446</form>
     447<script type="text/javascript">
     448    jQuery("#plugin-search-input").keyup(function(){
     449 
     450        // Retrieve the input field text and reset the count to zero
     451        var filter = $(this).val()
     452 
     453        // Loop through the comment list
     454        $("#the-list tr").each(function(){
     455 
     456            // If the list item does not contain the text phrase fade it out
     457            if ($(this).text().search(new RegExp(filter, "i")) < 0) {
     458                $(this).fadeOut(100);
     459 
     460            // Show the list item if the phrase matches and increase the count by 1
     461            } else {
     462                $(this).show();
     463               
     464            }
     465        });
    447466
     467    });
     468 
     469</script>
     470
    448471</div>
    449472
    450473<?php