2013-11-15 06:12:09 +01:00
|
|
|
/* global plugininstallL10n, tb_click, confirm */
|
|
|
|
|
2012-08-23 02:04:18 +02:00
|
|
|
/* Plugin Browser Thickbox related JS*/
|
|
|
|
var tb_position;
|
2014-03-16 19:28:17 +01:00
|
|
|
jQuery( document ).ready( function( $ ) {
|
2012-08-23 02:04:18 +02:00
|
|
|
tb_position = function() {
|
2014-03-16 19:28:17 +01:00
|
|
|
var tbWindow = $( '#TB_window' ),
|
|
|
|
width = $( window ).width(),
|
2014-07-13 00:08:16 +02:00
|
|
|
H = $( window ).height() - ( ( 792 < width ) ? 60 : 20 ),
|
|
|
|
W = ( 792 < width ) ? 772 : width - 20;
|
2012-08-23 02:04:18 +02:00
|
|
|
|
|
|
|
if ( tbWindow.size() ) {
|
2014-03-16 19:28:17 +01:00
|
|
|
tbWindow.width( W ).height( H );
|
|
|
|
$( '#TB_iframeContent' ).width( W ).height( H );
|
|
|
|
tbWindow.css({
|
|
|
|
'margin-left': '-' + parseInt( ( W / 2 ), 10 ) + 'px'
|
|
|
|
});
|
|
|
|
if ( typeof document.body.style.maxWidth !== 'undefined' ) {
|
|
|
|
tbWindow.css({
|
2014-08-13 01:02:16 +02:00
|
|
|
'top': '30px',
|
2014-03-16 19:28:17 +01:00
|
|
|
'margin-top': '0'
|
|
|
|
});
|
|
|
|
}
|
2013-11-15 06:12:09 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2014-03-16 19:28:17 +01:00
|
|
|
return $( 'a.thickbox' ).each( function() {
|
|
|
|
var href = $( this ).attr( 'href' );
|
|
|
|
if ( ! href ) {
|
2012-08-23 02:04:18 +02:00
|
|
|
return;
|
2014-03-16 19:28:17 +01:00
|
|
|
}
|
|
|
|
href = href.replace( /&width=[0-9]+/g, '' );
|
|
|
|
href = href.replace( /&height=[0-9]+/g, '' );
|
|
|
|
$(this).attr( 'href', href + '&width=' + W + '&height=' + ( H ) );
|
2012-08-23 02:04:18 +02:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2014-03-16 19:28:17 +01:00
|
|
|
$( window ).resize( function() {
|
|
|
|
tb_position();
|
|
|
|
});
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2014-07-17 00:50:14 +02:00
|
|
|
$('.plugin-card').on( 'click', 'a.thickbox', function() {
|
2012-08-23 02:04:18 +02:00
|
|
|
tb_click.call(this);
|
|
|
|
|
|
|
|
$('#TB_title').css({'background-color':'#222','color':'#cfcfcf'});
|
2014-07-17 00:50:14 +02:00
|
|
|
$('#TB_ajaxWindowTitle').html('<strong>' + plugininstallL10n.plugin_information + '</strong> ' + $(this).data( 'title' ) );
|
2012-08-23 02:04:18 +02:00
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2014-07-13 00:08:16 +02:00
|
|
|
/* Plugin install related JS */
|
2014-03-16 19:28:17 +01:00
|
|
|
$( '#plugin-information-tabs a' ).click( function( event ) {
|
|
|
|
var tab = $( this ).attr( 'name' );
|
|
|
|
event.preventDefault();
|
2014-07-13 00:08:16 +02:00
|
|
|
|
|
|
|
// Flip the tab
|
2014-03-16 19:28:17 +01:00
|
|
|
$( '#plugin-information-tabs a.current' ).removeClass( 'current' );
|
|
|
|
$( this ).addClass( 'current' );
|
2014-07-13 00:08:16 +02:00
|
|
|
|
|
|
|
// Only show the fyi box in the description section, on smaller screen, where it's otherwise always displayed at the top.
|
|
|
|
if ( 'description' !== tab && $( window ).width() < 772 ) {
|
|
|
|
$( '#plugin-information-content' ).find( '.fyi' ).hide();
|
|
|
|
} else {
|
|
|
|
$( '#plugin-information-content' ).find( '.fyi' ).show();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Flip the content.
|
|
|
|
$( '#section-holder div.section' ).hide(); // Hide 'em all.
|
2014-03-16 19:28:17 +01:00
|
|
|
$( '#section-' + tab ).show();
|
2012-08-23 02:04:18 +02:00
|
|
|
});
|
|
|
|
|
2014-03-16 19:28:17 +01:00
|
|
|
$( 'a.install-now' ).click( function() {
|
2012-08-23 02:04:18 +02:00
|
|
|
return confirm( plugininstallL10n.ays );
|
|
|
|
});
|
|
|
|
});
|