2012-02-10 03:45:17 -05:00
|
|
|
jQuery( function($) {
|
|
|
|
var id = typeof( current_site_id ) != 'undefined' ? '&site_id=' + current_site_id : '';
|
|
|
|
|
|
|
|
$( '#adduser-email, #newuser' ).autocomplete({
|
2012-03-24 00:54:58 -04:00
|
|
|
source: ajaxurl + '?action=autocomplete-user&autocomplete_type=add' + id,
|
2012-02-10 03:45:17 -05:00
|
|
|
delay: 500,
|
2012-02-10 13:05:20 -05:00
|
|
|
minLength: 2
|
2012-02-10 03:45:17 -05:00
|
|
|
});
|
2012-03-24 00:54:58 -04:00
|
|
|
|
|
|
|
$( '#user-search-input' ).autocomplete({
|
|
|
|
source: ajaxurl + '?action=autocomplete-user&autocomplete_type=search' + id,
|
|
|
|
delay: 500,
|
|
|
|
minLength: 2
|
|
|
|
});
|
|
|
|
|
|
|
|
$( '#all-user-search-input' ).autocomplete({
|
|
|
|
source: ajaxurl + '?action=autocomplete-user&autocomplete_type=search-all' + id,
|
|
|
|
delay: 500,
|
|
|
|
minLength: 2
|
|
|
|
});
|
|
|
|
});
|