5ff9cd268a
git-svn-id: https://develop.svn.wordpress.org/trunk@19903 602fd350-edb4-49c9-b593-d223f7449a82
9 lines
256 B
JavaScript
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
|
|
});
|
|
}); |