]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/js/user-suggest.js
WordPress 3.8
[autoinstalls/wordpress.git] / wp-admin / js / user-suggest.js
index 0bcfada4ba0ea30ab8a5bb39ae70e01ee34d5b37..130c3d1adfbaf9b845741447f9c1acdb528a8679 100644 (file)
@@ -1,13 +1,24 @@
-(function($) {
-       var id = 'undefined' !== typeof current_site_id ? '&site_id=' + current_site_id : '';
+/* 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' ).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'); }
+                       position:  position,
+                       open: function() {
+                               $( this ).addClass( 'open' );
+                       },
+                       close: function() {
+                               $( this ).removeClass( 'open' );
+                       }
                });
        });
-})(jQuery);
\ No newline at end of file
+})( jQuery );
\ No newline at end of file