jQuery(function($){
'use strict';
/* ---------------------------------------------- /*
* Countdown
/* ---------------------------------------------- */
$('.countdown[data-countdown]').each(function () {
var $this = $(this),
finalDate = $(this).data('countdown');
$this.countdown(finalDate, function (event) {
$this.html(event.strftime(
'
'
));
});
});
/* ---------------------------------------------- /*
* Preloader
/* ---------------------------------------------- */
(function () {
$(window).load(function() {
$('#pre-status').fadeOut();
$('#st-preloader').delay(350).fadeOut('slow');
});
}());
/* ---------------------------------------------- /*
* Full Screen
/* ---------------------------------------------- */
// Fullscreen Elements
function getWindowWidth() {
return Math.max( $(window).width(), window.innerWidth);
}
function getWindowHeight() {
return Math.max( $(window).height(), window.innerHeight);
}
function fullscreenElements() {
$('header#home-page').each(function(){
$(this).css('min-height', getWindowHeight());
$(this).css('min-width', getWindowWidth());
});
}
fullscreenElements();
});