]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/js/plugin-install.js
WordPress 3.8.1-scripts
[autoinstalls/wordpress.git] / wp-admin / js / plugin-install.js
index f32574abdb1773f5106e655e53d8a18ac74bfb8e..a5029ece39173766cfcd782df4b7128e28af553a 100644 (file)
@@ -1,19 +1,26 @@
+/* global plugininstallL10n, tb_click, confirm */
+
 /* Plugin Browser Thickbox related JS*/
 var tb_position;
 jQuery(document).ready(function($) {
        tb_position = function() {
-               var tbWindow = $('#TB_window'), width = $(window).width(), H = $(window).height(), W = ( 720 < width ) ? 720 : width, adminbar_height = 0;
+               var tbWindow = $('#TB_window'),
+                       width = $(window).width(),
+                       H = $(window).height(),
+                       W = ( 720 < width ) ? 720 : width,
+                       adminbar_height = 0;
 
-               if ( $('body.admin-bar').length )
-                       adminbar_height = 28;
+               if ( $('body.admin-bar').length ) {
+                       adminbar_height = parseInt( jQuery('#wpadminbar').css('height'), 10 );
+               }
 
                if ( tbWindow.size() ) {
                        tbWindow.width( W - 50 ).height( H - 45 - adminbar_height );
                        $('#TB_iframeContent').width( W - 50 ).height( H - 75 - adminbar_height );
-                       tbWindow.css({'margin-left': '-' + parseInt((( W - 50 ) / 2),10) + 'px'});
-                       if ( typeof document.body.style.maxWidth != 'undefined' )
-                               tbWindow.css({'top': 20 + adminbar_height + 'px','margin-top':'0'});
-               };
+                       tbWindow.css({'margin-left': '-' + parseInt( ( ( W - 50 ) / 2 ), 10 ) + 'px'});
+                       if ( typeof document.body.style.maxWidth !== 'undefined' )
+                               tbWindow.css({'top': 20 + adminbar_height + 'px', 'margin-top': '0'});
+               }
 
                return $('a.thickbox').each( function() {
                        var href = $(this).attr('href');
@@ -27,7 +34,7 @@ jQuery(document).ready(function($) {
 
        $(window).resize(function(){ tb_position(); });
 
-        $('#dashboard_plugins a.thickbox, .plugins a.thickbox').click( function() {
+       $('.plugins').on( 'click', 'a.thickbox', function() {
                tb_click.call(this);
 
                $('#TB_title').css({'background-color':'#222','color':'#cfcfcf'});