2009-01-02 10:08:58 -05:00
|
|
|
/* Plugin Browser Thickbox related JS*/
|
2010-12-15 13:48:40 -05:00
|
|
|
var tb_position;
|
2009-01-02 10:08:58 -05:00
|
|
|
jQuery(document).ready(function($) {
|
2010-12-15 13:48:40 -05:00
|
|
|
tb_position = function() {
|
|
|
|
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;
|
2009-01-02 10:08:58 -05:00
|
|
|
|
|
|
|
if ( tbWindow.size() ) {
|
2010-12-15 13:48:40 -05:00
|
|
|
tbWindow.width( W - 50 ).height( H - 45 - adminbar_height );
|
|
|
|
$('#TB_iframeContent').width( W - 50 ).height( H - 75 - adminbar_height );
|
2009-01-02 10:08:58 -05:00
|
|
|
tbWindow.css({'margin-left': '-' + parseInt((( W - 50 ) / 2),10) + 'px'});
|
2010-12-15 13:48:40 -05:00
|
|
|
if ( typeof document.body.style.maxWidth != 'undefined' )
|
|
|
|
tbWindow.css({'top': 20 + adminbar_height + 'px','margin-top':'0'});
|
2009-01-02 10:08:58 -05:00
|
|
|
};
|
|
|
|
|
2010-12-20 11:47:23 -05:00
|
|
|
return $('a.thickbox').each( function() {
|
2009-01-02 10:08:58 -05:00
|
|
|
var href = $(this).attr('href');
|
|
|
|
if ( ! href )
|
|
|
|
return;
|
|
|
|
href = href.replace(/&width=[0-9]+/g, '');
|
|
|
|
href = href.replace(/&height=[0-9]+/g, '');
|
2010-12-15 13:48:40 -05:00
|
|
|
$(this).attr( 'href', href + '&width=' + ( W - 80 ) + '&height=' + ( H - 85 - adminbar_height ) );
|
2009-01-02 10:08:58 -05:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2010-12-15 13:48:40 -05:00
|
|
|
$(window).resize(function(){ tb_position(); });
|
|
|
|
|
2011-12-22 19:25:09 -05:00
|
|
|
$('#dashboard_plugins a.thickbox, .plugins a.thickbox').click( function() {
|
2010-04-07 09:52:12 -04:00
|
|
|
tb_click.call(this);
|
|
|
|
|
2009-01-02 10:08:58 -05:00
|
|
|
$('#TB_title').css({'background-color':'#222','color':'#cfcfcf'});
|
|
|
|
$('#TB_ajaxWindowTitle').html('<strong>' + plugininstallL10n.plugin_information + '</strong> ' + $(this).attr('title') );
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
/* Plugin install related JS*/
|
|
|
|
$('#plugin-information #sidemenu a').click( function() {
|
|
|
|
var tab = $(this).attr('name');
|
|
|
|
//Flip the tab
|
|
|
|
$('#plugin-information-header a.current').removeClass('current');
|
|
|
|
$(this).addClass('current');
|
|
|
|
//Flip the content.
|
|
|
|
$('#section-holder div.section').hide(); //Hide 'em all
|
|
|
|
$('#section-' + tab).show();
|
|
|
|
return false;
|
|
|
|
});
|
2010-04-02 19:27:23 -04:00
|
|
|
|
2010-12-30 11:04:07 -05:00
|
|
|
$('a.install-now').click( function() {
|
2010-04-02 19:27:23 -04:00
|
|
|
return confirm( plugininstallL10n.ays );
|
|
|
|
});
|
2009-05-06 22:41:36 -04:00
|
|
|
});
|