web/wp-admin/js/user-suggest.js
changeset 204 09a1c134465b
parent 194 32102edaa81b
--- a/web/wp-admin/js/user-suggest.js	Wed Dec 19 12:35:13 2012 -0800
+++ b/web/wp-admin/js/user-suggest.js	Wed Dec 19 17:46:52 2012 -0800
@@ -1,1 +1,13 @@
-(function(a){var b="undefined"!==typeof current_site_id?"&site_id="+current_site_id:"";a(document).ready(function(){a(".wp-suggest-user").autocomplete({source:ajaxurl+"?action=autocomplete-user&autocomplete_type=add"+b,delay:500,minLength:2,position:("undefined"!==typeof isRtl&&isRtl)?{my:"right top",at:"right bottom",offset:"0, -1"}:{offset:"0, -1"},open:function(){a(this).addClass("open")},close:function(){a(this).removeClass("open")}})})})(jQuery);
\ No newline at end of file
+(function($) {
+	var id = 'undefined' !== typeof current_site_id ? '&site_id=' + current_site_id : '';
+	$(document).ready( function() {
+		$( '.wp-suggest-user' ).autocomplete({
+			source:    ajaxurl + '?action=autocomplete-user&autocomplete_type=add' + id,
+			delay:     500,
+			minLength: 2,
+			position:  ( 'undefined' !== typeof isRtl && isRtl ) ? { my: 'right top', at: 'right bottom', offset: '0, -1' } : { offset: '0, -1' },
+			open:      function() { $(this).addClass('open'); },
+			close:     function() { $(this).removeClass('open'); }
+		});
+	});
+})(jQuery);
\ No newline at end of file