2008-05-20 19:19:33 +02:00
|
|
|
|
|
|
|
jQuery(function($) {
|
|
|
|
if ( 'undefined' == typeof $.fn.pngFix )
|
|
|
|
$.fn.pngFix = function() { return this; }
|
|
|
|
|
|
|
|
var thickDims = function() {
|
|
|
|
var tbWindow = $('#TB_window');
|
|
|
|
var H = $(window).height();
|
|
|
|
var W = $(window).width();
|
|
|
|
|
|
|
|
if ( tbWindow.size() ) {
|
2008-05-24 19:06:26 +02:00
|
|
|
tbWindow.width( W - 90 ).height( H - 60 );
|
|
|
|
$('#TB_iframeContent').width( W - 90 ).height( H - 90 );
|
|
|
|
tbWindow.css({'margin-left': '-' + parseInt((( W - 90 ) / 2),10) + 'px'});
|
2008-06-25 18:58:27 +02:00
|
|
|
if ( typeof document.body.style.maxWidth != 'undefined' )
|
2008-05-24 19:06:26 +02:00
|
|
|
tbWindow.css({'top':'30px','margin-top':'0'});
|
2008-05-20 19:19:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
return $('a.thickbox').each( function() {
|
|
|
|
var href = $(this).parents('.available-theme').find('.previewlink').attr('href');
|
|
|
|
if ( ! href ) return;
|
|
|
|
href = href.replace(/&width=[0-9]+/g, '');
|
|
|
|
href = href.replace(/&height=[0-9]+/g, '');
|
2008-05-24 19:06:26 +02:00
|
|
|
$(this).attr( 'href', href + '&width=' + ( W - 110 ) + '&height=' + ( H - 100 ) );
|
2008-05-20 19:19:33 +02:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
thickDims()
|
|
|
|
.click( function() {
|
|
|
|
var alink = $(this).parents('.available-theme').find('.activatelink');
|
|
|
|
var url = alink.attr('href');
|
|
|
|
var text = alink.html();
|
|
|
|
|
|
|
|
$('#TB_title').css({'background-color':'#222','color':'#cfcfcf'});
|
|
|
|
$('#TB_closeAjaxWindow').css({'float':'left'});
|
|
|
|
$('#TB_ajaxWindowTitle').css({'float':'right'})
|
|
|
|
.append(' <a href="' + url + '" target="_top" class="tb-theme-preview-link">' + text + '</a>');
|
|
|
|
|
|
|
|
$('#TB_iframeContent').width('100%');
|
|
|
|
return false;
|
|
|
|
} );
|
|
|
|
|
|
|
|
$(window).resize( function() { thickDims() } );
|
|
|
|
});
|