1
0
mirror of https://github.com/WordPress/WordPress.git synced 2025-03-09 13:19:20 +01:00
WordPress/wp-admin/js/user-search.dev.js
koopersmith 27c0170224 Trailing commas make JS cry. see .
git-svn-id: http://svn.automattic.com/wordpress/trunk@19903 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-02-10 18:05:20 +00:00

9 lines
256 B
JavaScript

jQuery( function($) {
var id = typeof( current_site_id ) != 'undefined' ? '&site_id=' + current_site_id : '';
$( '#adduser-email, #newuser' ).autocomplete({
source: ajaxurl + '?action=autocomplete-user' + id,
delay: 500,
minLength: 2
});
});