]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/js/plugin-install.dev.js
Wordpress 3.1
[autoinstalls/wordpress.git] / wp-admin / js / plugin-install.dev.js
1 /* Plugin Browser Thickbox related JS*/
2 var tb_position;
3 jQuery(document).ready(function($) {
4         tb_position = function() {
5                 var tbWindow = $('#TB_window'), width = $(window).width(), H = $(window).height(), W = ( 720 < width ) ? 720 : width, adminbar_height = 0;
6
7                 if ( $('body.admin-bar').length )
8                         adminbar_height = 28;
9
10                 if ( tbWindow.size() ) {
11                         tbWindow.width( W - 50 ).height( H - 45 - adminbar_height );
12                         $('#TB_iframeContent').width( W - 50 ).height( H - 75 - adminbar_height );
13                         tbWindow.css({'margin-left': '-' + parseInt((( W - 50 ) / 2),10) + 'px'});
14                         if ( typeof document.body.style.maxWidth != 'undefined' )
15                                 tbWindow.css({'top': 20 + adminbar_height + 'px','margin-top':'0'});
16                 };
17
18                 return $('a.thickbox').each( function() {
19                         var href = $(this).attr('href');
20                         if ( ! href )
21                                 return;
22                         href = href.replace(/&width=[0-9]+/g, '');
23                         href = href.replace(/&height=[0-9]+/g, '');
24                         $(this).attr( 'href', href + '&width=' + ( W - 80 ) + '&height=' + ( H - 85 - adminbar_height ) );
25                 });
26         };
27
28         $(window).resize(function(){ tb_position(); });
29
30          $('#dashboard_plugins a.thickbox, .plugins a.thickbox').click( function() {
31                 tb_click.call(this);
32
33                 $('#TB_title').css({'background-color':'#222','color':'#cfcfcf'});
34                 $('#TB_ajaxWindowTitle').html('<strong>' + plugininstallL10n.plugin_information + '</strong>&nbsp;' + $(this).attr('title') );
35                 return false;
36         });
37
38         /* Plugin install related JS*/
39         $('#plugin-information #sidemenu a').click( function() {
40                 var tab = $(this).attr('name');
41                 //Flip the tab
42                 $('#plugin-information-header a.current').removeClass('current');
43                 $(this).addClass('current');
44                 //Flip the content.
45                 $('#section-holder div.section').hide(); //Hide 'em all
46                 $('#section-' + tab).show();
47                 return false;
48         });
49
50         $('a.install-now').click( function() {
51                 return confirm( plugininstallL10n.ays );
52         });
53 });