\n {title}\n <\/strong>\n {msg}<\/p>\n {html}\n {created}<\/small>\n <\/div>\n <\/div>\n <\/a>\n {icon}<\/div>\n
\n <\/i>\n <\/button>\n<\/div>"
var requiredUserNotificationTemplateFields = ["href","onclick","status","element_class","element_id","type","image","icon","title","msg","html","id","created"]
var autoPlayAjax=false;
var img1 = new Image();img1.src="https://vod.lifestream.tv/view/img/video-placeholder-gray.png";
var _adWasPlayed = 0;
$(document).ready(function () {
YPTHidenavbar();
});
async function refreshGetLiveImage(selector) {
$(selector).find('.thumbsImage img').each(function (index) {
var src = $(this).attr('src');
src = addGetParam(src, 'cache', Math.random());
$(this).attr('src', src);
});
setTimeout(function () {
$(selector).slideDown();
}, 1000); // give some time to load the new images
}
var _processLiveStats_processingNow = 0;
async function processLiveStats(response) {
if (_processLiveStats_processingNow) {
return false;
}
_processLiveStats_processingNow = 1;
setTimeout(function () {
_processLiveStats_processingNow = 0;
}, 200);
if (typeof response !== 'undefined') {
if (isArray(response)) {
for (var i in response) {
if (typeof response[i] !== 'object') {
continue;
}
//console.log('processLiveStats is array', response[i]);
processApplicationLive(response[i]);
}
} else {
//console.log('processLiveStats not array', response);
processApplicationLive(response);
}
if (!response.countLiveStream) {
availableLiveStreamNotFound();
} else {
$('#availableLiveStream').removeClass('notfound');
}
$('.onlineApplications').text($('#availableLiveStream > div').length);
}
setTimeout(function () {
}, 200);
}
function getStatsMenu(recurrentCall) {
if (avideoSocketIsActive()) {
return false;
}
availableLiveStreamIsLoading();
$.ajax({
url: webSiteRootURL + 'plugin/Live/stats.json.php?Menu',
success: function (response) {
//console.log('getStatsMenu processLiveStats', response);
processLiveStats(response);
if (avideoSocketIsActive()) {
//console.log('getStatsMenu: Socket is enabled we will not process ajax result');
return false;
}
if (recurrentCall) {
var timeOut = 15000;
setTimeout(function () {
getStatsMenu(true);
}, timeOut);
}
}
});
}
async function processApplicationLive(response) {
if (typeof response.applications !== 'undefined') {
var applications = response.applications;
response.applications = [];
for (let key in applications) {
if (applications[key].hasOwnProperty('html')) {
response.applications.push(applications[key]);
}
}
if (typeof onlineLabelOnline == 'function' && response.applications.length) {
//console.log('processApplicationLive 1', response.applications, response.applications.length);
for (i = 0; i < response.applications.length; i++) {
//console.log('processApplicationLive 1 title', response.applications[i].title);
if (!empty(response.applications[i].expires) && response.applications[i].expires < _serverTime) {
return false;
}
processApplication(response.applications[i]);
if (!response.applications[i].comingsoon) {
if (typeof response.applications[i].live_cleanKey !== 'undefined') {
selector = '.liveViewStatusClass_' + response.applications[i].live_cleanKey;
onlineLabelOnline(selector);
}
if (typeof response.applications[i].key !== 'undefined') {
selector = '.liveViewStatusClass_' + response.applications[i].key;
onlineLabelOnline(selector);
}
}
}
mouseEffect();
} else {
//console.log('processApplicationLive ERROR', response);
}
}
// check for live servers
var count = 0;
while (typeof response[count] !== 'undefined') {
//console.log('processApplicationLive 2',count, response[count].applications, response[count].applications.length);
for (i = 0; i < response[count].applications.length; i++) {
processApplication(response[count].applications[i]);
}
count++;
}
}
function availableLiveStreamIsLoading() {
if ($('#availableLiveStream').hasClass('notfound')) {
availableLiveStreamEmpty();
}
}
function availableLiveStreamNotFound() {
$('#availableLiveStream').addClass('notfound');
availableLiveStreamEmpty();
}
async function availableLiveStreamEmpty() {
$('#availableLiveStream').empty();
}
var hideWhenExpireClasses = [];
function hideWhenExpire(application){
var className = application.className;
// 604.800 = 1 WEEK
if (!empty(application.expires) && application.expires < 604800 && !in_array(className, hideWhenExpireClasses)) {
var expires_in_seconds = application.expires - _serverTime;
console.log('hideWhenExpire', expires_in_seconds, className);
hideWhenExpireClasses.push(className);
setTimeout(function(){
console.log('hideWhenExpire now', className);
$('.'+className).slideUp();
$('.onlineApplications').text($('.onlineApplications').text()-1);
},expires_in_seconds*1000);
}
}
var linksToEmbedTimeout;
async function processApplication(application) {
href = application.href;
title = application.title;
name = application.name;
user = application.user;
photo = application.photo;
if (!empty(application.expires) && application.expires < _serverTime) {
return false;
}
hideWhenExpire(application);
if (application && typeof application.key == 'string') {
key = application.key.replace(/[&=]/g, '');
} else {
key = '';
}
////console.log('processApplication', application.className);
callback = '';
if (typeof application.callback === 'string') {
callback = application.callback;
}
isPrivate = application.isPrivate;
if (application.type === 'Live') {
online = application.users.online;
views = application.users.views;
} else {
online = 0;
views = 0;
}
if (typeof application.html != 'undefined') {
var notificationHTML = $(application.html);
var notificatioID = (notificationHTML.attr('id') + '_notification').replace(/[&=]/g, '');
if (typeof key !== 'undefined') {
////console.log('processApplication remove class .live_' + key);
$('.live_' + key).remove();
}
if (!$('#' + notificatioID).length) {
notificationHTML.attr('id', notificatioID);
if (application.comingsoon) {
//console.log('application.comingsoon 1', application.comingsoon, application.method);
$('#availableLiveStream').append(notificationHTML);
} else {
$('#availableLiveStream').prepend(notificationHTML);
}
animateChilds('#availableLiveStream', 'animate__bounceInRight', 0.05);
} else {
////console.log('processApplication is already present '+notificatioID, application.className);
}
var html;
html = application.htmlExtra;
var id = $(html).attr('id').replace(/[&=]/g, '');
if ($('#' + id).length) {
//console.log('processApplication key found', id);
return false;
}
//console.log('processApplication key NOT found', id);
if (application.comingsoon && application.comingsoon > _serverTime) {
////console.log('application.comingsoon 2', application.comingsoon, application.method);
$('#liveScheduleVideos .extraVideos').append(html);
$('#liveScheduleVideos').slideDown();
} else {
$('#liveVideos .extraVideos').prepend(html);
$('#liveVideos').slideDown();
}
processUserNotificationFromApplication(application);
setTimeout(function () {
lazyImage();
}, 1000);
if (callback) {
eval("try {" + callback + ";} catch (e) {console.log('processApplication application.callback error',e.message);}");
}
} else {
//console.log('application.html is undefined');
}
clearTimeout(linksToEmbedTimeout);
linksToEmbedTimeout = setTimeout(function () {
avideoSocket();
}, 500);
if (application.users && typeof application.users.views !== 'undefined') {
$('.views_on_total_on_live_' + application.users.transmition_key + '_' + application.users.live_servers_id).text(application.users.views);
}
}
function processUserNotificationFromApplication(application){
if(typeof addTemplateFromArray !== 'function'){
return false;
}
var itemsArray = {};
itemsArray.priority = 3;
itemsArray.image = application.poster;
itemsArray.title = application.title;
itemsArray.href = application.href;
itemsArray.element_class = application.className;
itemsArray.element_id = application.className;
itemsArray.icon = 'fas fa-video';
itemsArray.type = 'info';
itemsArray.html = 'LIVE NOW ';
addTemplateFromArray(itemsArray);
}
function socketLiveONCallback(json) {
//console.log('socketLiveONCallback processLiveStats', json);
processLiveStats(json.stats);
var selector = '.live_' + json.live_servers_id + "_" + json.key;
$(selector).slideDown();
if (typeof onlineLabelOnline == 'function') {
selector = '#liveViewStatusID_' + json.key + '_' + json.live_servers_id;
onlineLabelOnline(selector);
selector = '.liveViewStatusClass_' + json.key + '_' + json.live_servers_id;
onlineLabelOnline(selector);
selector = '.liveViewStatusClass_' + json.cleanKey;
////console.log('socketLiveOFFCallback 3', selector);
onlineLabelOnline(selector);
}
// update the chat if the history changes
var IframeClass = ".yptchat2IframeClass_" + json.key + "_" + json.live_servers_id;
if ($(IframeClass).length) {
var src = $(IframeClass).attr('src');
if (src) {
avideoToast('Loading new chat');
var newSRC = addGetParam(src, 'live_transmitions_history_id', json.live_transmitions_history_id);
$(IframeClass).attr('src', newSRC);
}
}
if (isInLive(json)) {
playerPlay();
showImage('prerollPoster', json.cleanKey);
}
}
function socketLiveOFFCallback(json) {
//console.log('socketLiveOFFCallback', json);
var selector = '.live_' + json.live_servers_id + "_" + json.key;
selector += ', .liveVideo_live_' + json.live_servers_id + "_" + json.key;
selector += ', .live_' + json.key;
////console.log('socketLiveOFFCallback 1', selector);
$(selector).slideUp("fast", function () {
$(this).remove();
});
if (typeof onlineLabelOffline == 'function') {
selector = '#liveViewStatusID_' + json.key + '_' + json.live_servers_id;
////console.log('socketLiveOFFCallback 2', selector);
onlineLabelOffline(selector);
selector = '.liveViewStatusClass_' + json.key + '_' + json.live_servers_id;
////console.log('socketLiveOFFCallback 3', selector);
onlineLabelOffline(selector);
selector = '.liveViewStatusClass_' + json.cleanKey;
////console.log('socketLiveOFFCallback 3', selector);
onlineLabelOffline(selector);
}
setTimeout(function () {
//console.log('socketLiveOFFCallback processLiveStats');
processLiveStats(json.stats);
setTimeout(function () {
hideExtraVideosIfEmpty();
}, 500);
}, 500);
if (isInLive(json)) {
showImage('postrollPoster', json.cleanKey);
}
if(typeof updateUserNotificationCount == 'function'){
updateUserNotificationCount();
}
}
async function hideExtraVideosIfEmpty() {
$('#liveScheduleVideos .extraVideos').each(function (index, currentElement) {
var somethingIsVisible = false;
$(this).children('div').each(function (index2, currentElement2) {
if ($(this).is(":visible")) {
somethingIsVisible = true;
return false;
}
});
if (!somethingIsVisible) {
$('#liveScheduleVideos').slideUp();
}
});
$('#liveVideos .extraVideos').each(function (index, currentElement) {
var somethingIsVisible = false;
$(this).children('div').each(function (index2, currentElement2) {
if ($(this).is(":visible")) {
somethingIsVisible = true;
return false;
}
});
if (!somethingIsVisible) {
$('#liveVideos').slideUp();
}
});
}
$(document).ready(function () {
if (typeof avideoSocketIsActive == 'function' && !avideoSocketIsActive()) {
availableLiveStreamIsLoading();
getStatsMenu(true);
}
processLiveStats({"applications":[],"hidden_applications":[],"total":0,"countLiveStream":0,"timezone":"America\/New_York"}); });
$(function () {
$("#navBarFlag").change(function () {
var selfURI = "https://vod.lifestream.tv/view/";
window.location.href = addGetParam(selfURI, 'lang', $(this).val());
});
});
$(function () {
/** showAlertMessage **/
/** showAlertMessage !requestComesFromSafePlace [binance.com] **/ });
$(document).ready(function () {
});
$(document).ready(function () {
$("#searchForm").attr("onsubmit", "return false;"); // tu="off"
$("#searchForm input[name=search]").click(function () {
if ($("#searchForm input[name=search]").val() != "") {
$("#liveSearchResult").show();
} else {
$("#liveSearchResult").hide();
}
});
$("#searchForm input[name=search]").focus(function () {
if ($("#searchForm input[name=search]").val() != "") {
$("#liveSearchResult").show();
} else {
$("#liveSearchResult").hide();
}
});
$(document).mouseup(function (e) {
var container = $("#liveSearchResult");
if (!container.is(e.target) && container.has(e.target).length === 0) {
container.hide();
}
});
//$("#searchForm").append("");
$("#searchForm input[name=search]").on("input", function () {
if ($("#searchForm input[name=search]").val() == "") {
$("#liveSearchResult").hide();
}
});
});
var linksToFullscreenAutocompleteTimeout;
var livesearchAutocompleteSelected = false;
var livesearchAutocompleteCliked = false;
$(function () {
$("#searchForm input[name=search]").autocomplete({
minLength: 0,
source: function (req, res) {
$.ajax({
url: webSiteRootURL + 'plugin/Livesearch/myVideos.json.php',
type: "GET",
data: {
search: req.term
},
success: function (data) {
console.log("autocomplete data received");
res(data.rows);
if (typeof linksToFullscreen == 'function') {
clearTimeout(linksToFullscreenAutocompleteTimeout);
linksToFullscreenAutocompleteTimeout = setTimeout(function () {
console.log('autocomplete linksToFullscreen .ui-autocomplete a');
}, 50);
}
}
});
},
focus: function (event, ui) {
//$("#searchForm input[name=search]").val(ui.item.title);
return false;
},
select: function (event, ui) {
console.log("autocomplete select");
if (livesearchAutocompleteCliked) {
console.log("autocomplete select already clicked");
return true;
}
livesearchAutocompleteSelected = true;
clearTimeout(linksToFullscreenAutocompleteTimeout);
linksToFullscreenAutocompleteTimeout = setTimeout(function () {
console.log("autocomplete trigger click");
livesearchAutocompleteCliked = true;
if (!$('#livesearch_autocomplete_' + ui.item.id).hasClass('linksToFullscreen')) {
document.location = $('#livesearch_autocomplete_' + ui.item.id).attr('href');
} else {
$('#livesearch_autocomplete_' + ui.item.id).trigger('click');
}
setTimeout(function () {
livesearchAutocompleteCliked = false;
}, 1000);
}, 50);
return false;
},
search: function (event, ui) {
//$("#liveSearchResult").empty();
console.log("autocomplete search");
}
}).autocomplete("instance")._renderItem = function (ul, item) {
var sr = $("#searchRow").clone();
sr.css("display", "block");
var html = sr.html();
html = html.replace(new RegExp("{id}", 'g'), item.id);
html = html.replace(new RegExp("{href}", 'g'), item.href);
html = html.replace(new RegExp("{embed}", 'g'), item.hrefembed);
html = html.replace(new RegExp("{filename}", 'g'), item.filename);
html = html.replace(new RegExp("{imgURL}", 'g'), ' ');
html = html.replace(new RegExp("{clean_category}", 'g'), item.clean_category);
html = html.replace(new RegExp("{category}", 'g'), item.category);
html = html.replace(new RegExp("{title}", 'g'), item.title);
html = html.replace(new RegExp("{description}", 'g'), item.description);
//$("#liveSearchResult").show();
var append = $("").append(html).appendTo(ul);
return append;
};
$("#searchForm input[name=search]").keydown(function (event) {
if (event.keyCode == 13) {
if (livesearchAutocompleteSelected) {
console.log("autocomplete keydown already selected");
livesearchAutocompleteSelected = false;
return false;
}
if ($("#searchForm input[name=search]").val().length == 0) {
event.preventDefault();
return false;
} else {
clearTimeout(linksToFullscreenAutocompleteTimeout);
linksToFullscreenAutocompleteTimeout = setTimeout(function () {
console.log("autocomplete trigger keydown");
$("#searchForm").submit();
}, 50);
}
}
});
});
var playListsAdding = false;
var playList = [];
function reloadPlayLists() {
if (!isOnline()) {
return false;
}
//console.log('reloadPlayLists');
$.ajax({
url: webSiteRootURL + 'objects/playlists.json.php',
success: function (response) {
playList = response;
reloadPlayListButtons();
}
});
}
function reloadPlayListButtons() {
//console.log('reloadPlayListButtons');
$('.watchLaterBtnAdded').hide();
$('.favoriteBtnAdded').hide();
$('.watchLaterBtn').show();
$('.favoriteBtn').show();
for (var i in playList) {
if (!playList[i].id || (playList[i].status !== 'watch_later' && playList[i].status !== 'favorite')) {
continue;
}
for (var x in playList[i].videos) {
if (typeof (playList[i].videos[x]) === 'object') {
if (playList[i].status === 'watch_later') {
$('.watchLaterBtn' + playList[i].videos[x].videos_id).hide();
$('.watchLaterBtnAdded' + playList[i].videos[x].videos_id).show();
} else if (playList[i].status === 'favorite') {
$('.favoriteBtn' + playList[i].videos[x].videos_id).hide();
$('.favoriteBtnAdded' + playList[i].videos[x].videos_id).show();
}
}
}
}
}
loadPlayListsResponseObject = {timestamp: 0, response: false};
function loadPlayLists(videos_id, crc) {
//console.log('loadPlayLists');
if (loadPlayListsResponseObject.timestamp + 5000 < Date.now()) {
loadPlayListsResponseObject.timestamp = Date.now();
loadPlayListsResponseObject.response = [];
setTimeout(function () {
$.ajax({
url: 'https://vod.lifestream.tv/objects/playlists.json.php',
cache: true,
success: function (response) {
loadPlayListsResponseObject.response = response;
loadPlayListsResponse(loadPlayListsResponseObject.response, videos_id, crc);
}
});
;
}, 500);
} else {
if (loadPlayListsResponseObject.response) {
loadPlayListsResponse(loadPlayListsResponseObject.response, videos_id, crc);
} else {
setTimeout(function () {
loadPlayLists(videos_id, crc);
}, 1500);
}
}
}
var listGroupItemTemplate = "\n \n <\/i> \n <\/button>\n \n <\/i> \n <\/button>\n \n <\/i> \n {name_translated}<\/span>\n <\/span>\n \n \n <\/label>\n <\/div>\n<\/a>";
async function loadPlayListsResponse(response, videos_id, crc) {
//console.log('loadPlayListsResponse');
//console.log(response, videos_id, crc);
$('.searchlist' + videos_id + crc).html('');
for (var i in response) {
if (!response[i].id) {
continue;
}
var icon = "fa fa-lock"
if (response[i].status == "public") {
icon = "fa fa-globe"
} else if (response[i].status == "watch_later") {
icon = "fas fa-clock"
} else if (response[i].status == "favorite") {
icon = "fas fa-heart"
}
var checked = "";
for (var x in response[i].videos) {
if (typeof (response[i].videos[x]) === 'object' && response[i].videos[x].videos_id == videos_id) {
checked = "checked";
}
}
var randId = (("_" + response[i].id) + videos_id) + Math.random();
var itemsArray = {};
itemsArray.icon = icon;
itemsArray.id = response[i].id;
itemsArray.name_translated = response[i].name_translated;
itemsArray.response_id = response[i].id + '' + videos_id;
itemsArray.checked = checked;
itemsArray.videos_id = videos_id;
itemsArray.randId = randId;
$(".searchlist" + videos_id + crc).append(arrayToTemplate(itemsArray, listGroupItemTemplate));
}
$('.searchlist' + videos_id + crc).btsListFilter('#searchinput' + videos_id + crc, {itemChild: '.nameSearch', initial:false});
$('.playListsVideosIds' + videos_id).change(function () {
if (playListsAdding) {
return false;
}
playListsAdding = true;
addVideoToPlayList(videos_id, $(this).is(":checked"), $(this).val());
return false;
});
}
function addVideoToPlayList(videos_id, isChecked, playlists_id) {
//console.log('addVideoToPlayList');
modal.showPleaseWait();
$.ajax({
url: webSiteRootURL + 'objects/playListAddVideo.json.php',
method: 'POST',
data: {
'videos_id': videos_id,
'add': isChecked,
'playlists_id': playlists_id
},
success: function (response) {
reloadPlayLists();
//console.log(".playListsIds_" + playlists_id + '_videos_id_' + videos_id);
$(".playListsIds_" + playlists_id + '_videos_id_' + videos_id).prop("checked", isChecked);
modal.hidePleaseWait();
setTimeout(function () {
playListsAdding = false
}, 500);
}
});
}
$(document).ready(function () {
reloadPlayLists();
});
var webSocketSelfURI = 'https://vod.lifestream.tv/view/';
var webSocketVideos_id = '0';
var webSocketLiveKey = 'false';
var webSocketServerVersion = '3.3';
var webSocketToken = '';
var webSocketURL = '';
var webSocketTypes = {"OPEN_CONNECTION":"OPEN_CONNECTION","NEW_CONNECTION":"NEW_CONNECTION","NEW_DISCONNECTION":"NEW_DISCONNECTION","DEFAULT_MESSAGE":"DEFAULT_MESSAGE","ON_VIDEO_MSG":"ON_VIDEO_MSG","ON_LIVE_MSG":"ON_LIVE_MSG","TESTING":"TESTING"};
function onUserSocketConnect(response) {
try {
if(typeof changeChat2UserStatus === 'function'){changeChat2UserStatus(response.msg.users_id, 'o');}callerNewConnection(response);socketNewConnection(response); } catch (e) {
console.log('onUserSocketConnect:error', e.message);
}
}
function onUserSocketDisconnect(response) {
try {
if(typeof changeChat2UserStatus === 'function'){changeChat2UserStatus(response.msg.users_id, 'f');}callerDisconnection(response);socketDisconnection(response); } catch (e) {
console.log('onUserSocketConnect:error', e.message);
}
}
$(document).ready(function () {
});
function onlineLabelOnline(selector) {
selector = selector.replace(/[&=]/g, '');
//console.log("Change video to Online ", selector);
//console.trace();
$(selector).removeClass('label-warning');
$(selector).removeClass('label-danger');
$(selector).addClass('label-success');
$(selector).text("ONLINE");
if ($('#indexCol1 div.panel-heading .label-success').length) {
isOnlineLabel = true;
}
}
function onlineLabelPleaseWait(selector) {
selector = selector.replace(/[&=]/g, '');
console.log("Change video to please wait", selector);
if (!$('#indexCol1 div.panel-heading .label-success').length) {
isOnlineLabel = false;
}
$(selector).removeClass('label-success');
$(selector).removeClass('label-danger');
$(selector).addClass('label-warning');
$(selector).text("Please Wait ...");
if (!$('#indexCol1 div.panel-heading .label-success').length) {
isOnlineLabel = false;
}
}
function onlineLabelOffline(selector) {
selector = selector.replace(/[&=]/g, '');
//console.log("Change video to offline", selector);
//console.trace();
$(selector).removeClass('label-warning');
$(selector).removeClass('label-success');
$(selector).addClass('label-danger');
$(selector).text("OFFLINE");
if (!$('#indexCol1 div.panel-heading .label-success').length) {
isOnlineLabel = false;
}
}
function onlineLabelFinishing(selector) {
selector = selector.replace(/[&=]/g, '');
console.log("Change video to finishing", selector);
$(selector).removeClass('label-warning');
$(selector).removeClass('label-success');
$(selector).addClass('label-danger');
$(selector).text("Finishing Live...");
if (!$('#indexCol1 div.panel-heading .label-success').length) {
isOnlineLabel = false;
}
}
function startRecorderCallback(json){
setIsRecording(json.key);
}
function stopRecorderCallback(json){
setIsNotRecording(json.key);
}
function setIsRecording(key) {
$('.isRecordingIcon'+key).addClass('isRecording');
}
function setIsNotRecording(key) {
$('.isRecordingIcon'+key).removeClass('isRecording');
}
$(function () {setTimeout(function(){if(typeof $("#mainNavBar").autoHidingNavbar == "function"){$("#mainNavBar").autoHidingNavbar();}},5000);});
$(function () {
$("#mainNavBar").on("show.autoHidingNavbar", function () {
if ($(window).scrollTop() < 10) {
$("body").removeClass("nopadding");
}
});
$("#mainNavBar").on("hide.autoHidingNavbar", function () {
if ($(window).scrollTop() < 10) {
$("body").addClass("nopadding");
}
});
});
iframeAllowAttributes = 'allow="fullscreen;autoplay;camera *;microphone *;" allowfullscreen="allowfullscreen" mozallowfullscreen="mozallowfullscreen" msallowfullscreen="msallowfullscreen" oallowfullscreen="oallowfullscreen" webkitallowfullscreen="webkitallowfullscreen"';
var checkFooterTimout;
$(function () {
checkFooter();
$(window).scroll(function () {
clearTimeout(checkFooterTimout);
checkFooterTimout = setTimeout(function () {
checkFooter();
}, 100);
});
$(window).resize(function () {
clearTimeout(checkFooterTimout);
checkFooterTimout = setTimeout(function () {
checkFooter();
}, 100);
});
$(window).mouseup(function () {
clearTimeout(checkFooterTimout);
checkFooterTimout = setTimeout(function () {
checkFooter();
}, 100);
});
});
function checkFooter() {
$("#mainFooter").fadeIn();
if (getPageHeight() <= $(window).height()) {
clearTimeout(checkFooterTimout);
checkFooterTimout = setTimeout(function () {
checkFooter();
}, 1000);
$("#mainFooter").css("position", "fixed");
} else {
$("#mainFooter").css("position", "relative");
}
}
function getPageHeight() {
var mainNavBarH = 0;
if ($('#mainNavBar').length) {
mainNavBarH = $('#mainNavBar').height();
}
var mainFooterH = 0;
if ($('#mainFooter').length) {
mainFooterH = $('#mainFooter').height();
}
var containerH = getLargerContainerHeight();
return mainNavBarH + mainFooterH + containerH;
}
function getLargerContainerHeight() {
var conteiners = $('body > .container,body > .container-fluid');
var height = 0;
for (var item in conteiners) {
if (isNaN(item)) {
continue;
}
var h = $(conteiners[item]).height();
if (h > height) {
height = h;
}
}
return height;
}
$(document).ready(function () {
$('#TrailerModal').on('hidden.bs.modal', function () {
$('#TrailerModal iframe').attr('src', '');
});
$('#bigVideoCarousel').bind('slide.bs.carousel', function (e) {
setTimeout(function(){
lazyImage();
},500);
});
});