]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/js/user-suggest.js
WordPress 4.1.4-scripts
[autoinstalls/wordpress.git] / wp-admin / js / user-suggest.js
index 5f17b528d1b94f28fceed34cc723693ee3f65888..0113ded0e970204133d145c7bf153ff3b84ba141 100644 (file)
@@ -1 +1,30 @@
-(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
+/* global ajaxurl, current_site_id, isRtl */
+
+(function( $ ) {
+       var id = ( typeof current_site_id !== 'undefined' ) ? '&site_id=' + current_site_id : '';
+       $(document).ready( function() {
+               var position = { offset: '0, -1' };
+               if ( typeof isRtl !== 'undefined' && isRtl ) {
+                       position.my = 'right top';
+                       position.at = 'right bottom';
+               }
+               $( '.wp-suggest-user' ).each( function(){
+                       var $this = $( this ),
+                               autocompleteType = ( typeof $this.data( 'autocompleteType' ) !== 'undefined' ) ? $this.data( 'autocompleteType' ) : 'add',
+                               autocompleteField = ( typeof $this.data( 'autocompleteField' ) !== 'undefined' ) ? $this.data( 'autocompleteField' ) : 'user_login';
+
+                       $this.autocomplete({
+                               source:    ajaxurl + '?action=autocomplete-user&autocomplete_type=' + autocompleteType + '&autocomplete_field=' + autocompleteField + id,
+                               delay:     500,
+                               minLength: 2,
+                               position:  position,
+                               open: function() {
+                                       $( this ).addClass( 'open' );
+                               },
+                               close: function() {
+                                       $( this ).removeClass( 'open' );
+                               }
+                       });
+               });
+       });
+})( jQuery );