1 var tb_position;jQuery(document).ready(function(a){tb_position=function(){var f=a("#TB_window"),e=a(window).width(),d=a(window).height(),c=(720<e)?720:e,b=0;if(a("body.admin-bar").length){b=28}if(f.size()){f.width(c-50).height(d-45-b);a("#TB_iframeContent").width(c-50).height(d-75-b);f.css({"margin-left":"-"+parseInt(((c-50)/2),10)+"px"});if(typeof document.body.style.maxWidth!="undefined"){f.css({top:20+b+"px","margin-top":"0"})}}return a("a.thickbox").each(function(){var g=a(this).attr("href");if(!g){return}g=g.replace(/&width=[0-9]+/g,"");g=g.replace(/&height=[0-9]+/g,"");a(this).attr("href",g+"&width="+(c-80)+"&height="+(d-85-b))})};a(window).resize(function(){tb_position()});a("#dashboard_plugins a.thickbox, .plugins a.thickbox").click(function(){tb_click.call(this);a("#TB_title").css({"background-color":"#222",color:"#cfcfcf"});a("#TB_ajaxWindowTitle").html("<strong>"+plugininstallL10n.plugin_information+"</strong> "+a(this).attr("title"));return false});a("#plugin-information #sidemenu a").click(function(){var b=a(this).attr("name");a("#plugin-information-header a.current").removeClass("current");a(this).addClass("current");a("#section-holder div.section").hide();a("#section-"+b).show();return false});a("a.install-now").click(function(){return confirm(plugininstallL10n.ays)})}); |
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> ' + $(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 }); |