Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
d884697d2b
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
17 lines (17 sloc) 601 Bytes
jQuery(document).ready(function($){
$( window ).load(function() {
/*$('.clearsubmit').click(function(){
window.location = window.location.href.split('?')[0];
});*/
var centerText = function(){
$('.text-overlay').each(function(){
$(this).find('.widget_sp_image-description').css('top',Math.floor(($(this).find('img').height()-$(this).find('.widget_sp_image-description').height())/2).toString()+'px');
});
$('.single-program').find('#content > .container').first().removeClass('container');
}
centerText();
$(window).on('resize', function(){
centerText();
});
});
});