var ie8Mode = /msie\s+8/i.test(navigator.userAgent);
if (typeof parent.videojs == 'undefined') {
// For old IE
parent.document.createElement('video');
parent.document.createElement('audio');
var videoJSStyle = document.createElement('link');
videoJSStyle.setAttribute("rel","stylesheet");
videoJSStyle.setAttribute("type","text/css");
videoJSStyle.setAttribute("href", "//cdn2.editmysite.com/css/videojs/video.4.3.css?buildTime=1667925507");
parent.document.getElementsByTagName("head")[0].appendChild(videoJSStyle);
var videoJSScript = document.createElement('script');
videoJSScript.setAttribute("type","text/javascript");
videoJSScript.setAttribute("src", "//www.weebly.com/weebly/libraries/videojs/video.4.3.js?buildTime=1667925507");
if (!ie8Mode) {
var lastStyle = document.createElement('style');
lastStyle.type = "text/css";
var fontCSS = "@font-face {"
+ "font-family: 'ProximaNova';"
+ "src: url('//cdn2.editmysite.com/fonts/Proxima-Light/267447_4_0.eot');"
+ "src: url('//cdn2.editmysite.com/fonts/Proxima-Light/267447_4_0.eot?#iefix') format('embedded-opentype'),"
+ "url('//cdn2.editmysite.com/fonts/Proxima-Light/267447_4_0.woff') format('woff'),"
+ "url('//cdn2.editmysite.com/fonts/Proxima-Light/267447_4_0.ttf') format('truetype');"
+ "}"
if (lastStyle.styleSheet){
lastStyle.styleSheet.cssText = fontCSS;
} else {
lastStyle.appendChild(document.createTextNode(fontCSS));
}
parent.document.getElementsByTagName('head')[0].appendChild(lastStyle);
}
if (ie8Mode) {
videoJSScript.onreadystatechange = function () {
if (this.readyState == 'complete' || this.readyState == 'loaded') firstVideo();
}
}
else {
videoJSScript.onload = firstVideo;
}
parent.document.getElementsByTagName("head")[0].appendChild(videoJSScript);
}
else {
plantVideo();
}
function firstVideo() {
parent.videojs.options.flash.swf = '//www.weebly.com/weebly/libraries/videojs/video-js.swf?buildTime=1667925507';
plantVideo();
}
function plantVideo() {
var currVideo = jQuery(
'
'
+ ''
+ '
'
);
parent.document.getElementById('wsite-video-container-858796290413412517').appendChild(currVideo.get(0));
currVideo = currVideo.parent(); // The library moves things around so the parent holds all of the parts of the player
var videoTimeHolder;
var flashMode = false;
var videojs = (typeof videojs == 'undefined' ? parent.videojs : videojs);
// Check for flv videos that didn't get encoded.
var videoPlayer = videojs("video-858796290413412517", {
"controls": true,
"autoplay": false,
'techOrder': ['html5','flash'],
"preload": "none",
"poster": "/uploads/b/6481337-273094536700997788/video-2021-05-20-09-24-16_823.jpg",
"width": 501,
"height": 282
}, function(){
// IE8 won't trigger the video finishing its load and doesn't display background images correctly.
if (ie8Mode) {
var actualRatio = currVideo.find('.vjs-poster').width()/currVideo.find('.vjs-poster').height();
var currImage = currVideo.find('.vjs-poster img');
var imageRatio = currImage.width()/currImage.height();
if (imageRatio > 1 && imageRatio > actualRatio) {
currImage.css({
'width': '100%',
'height': 'auto'
});
}
else {
currImage.css({
'width': 'auto',
'height': '100%'
});
}
currImage.show();
}
else if (currVideo.find('.vjs-using-native-controls').length) {
currVideo.find('video').show();
}
else {
currVideo.find('.vjs-poster').css({
'background-image': 'url("/uploads/b/6481337-273094536700997788/video-2021-05-20-09-24-16_823.jpg")',
'background-repeat': 'no-repeat',
'background-position': 'center'
});
}
currVideo.find('.vjs-seek-handle').append('');
videoTimeHolder = currVideo.find('.vjs-current-time-value');
var downloadButton = jQuery('');
downloadButton.attr('href', '/uploads/b/6481337-273094536700997788/video-2021-05-20-09-24-16_823.mp4');
downloadButton.html('Download
');
currVideo.find('.vjs-fullscreen-control').before(downloadButton);
});
flashMode = videoPlayer.ia == "Flash";
if (flashMode) {
currVideo.addClass('finished-loading-video');
}
videoPlayer.on('play', function() {
currVideo.find('video').show();
if (currVideo.hasClass('finished-loading-video')) currVideo.find('.vjs-control-bar').show();
});
// Handles narrow videos where controls don't fit
videoPlayer.on('pause', function() {
if (
currVideo.find('.vjs-control-bar').width() < 300 &&
!currVideo.find('.video-js').hasClass('vjs-fullscreen')
) {
currVideo.find('.vjs-big-play-button').one('click', function() {
jQuery(this).hide();
videoPlayer.play();
})
.show();
}
});
videoPlayer.on('timeupdate', function() {
var currTime = ~~videoPlayer.currentTime();
var hours = ~~(currTime / 3600);
var minutes = ~~((currTime % 3600) / 60);
var seconds = currTime % 60;
var finalTime = "";
if (hours) {
finalTime += hours + ":" + (minutes < 10 ? "0" : "");
}
finalTime += minutes + ":" + (seconds < 10 ? "0" : "");
finalTime += seconds;
videoTimeHolder.text(finalTime);
});
// Place control bars in the right places and get rid of loading indicator
videoPlayer.on('loadedmetadata', function() {
positionControlBar();
});
videoPlayer.on('fullscreenchange', function() {
positionControlBar(currVideo.find('.video-js').hasClass('vjs-fullscreen'));
});
videoPlayer.on('error', function() {
currVideo.find('video, .vjs-control-bar').hide();
currVideo.find('.vjs-loading-spinner').hide();
currVideo.find('.vjs-poster').show();
videoPlayer.off();
currVideo.find('.vjs-big-play-button')
.addClass('finished-loading-video video-error');
});
function positionControlBar(isFullScreen) {
// Flash videos don't give us these attributes and render from CSS
if (flashMode) return false;
var actualVideo = currVideo.find('video');
if (isNaN(actualVideo.get(0).videoHeight)) {
currVideo.find('.vjs-control-bar').hide();
return false;
}
var actualWidth = actualVideo.width();
var actualRatio = actualWidth/currVideo.find('video').height();
var videoRatio = actualVideo.get(0).videoWidth/actualVideo.get(0).videoHeight;
var computedBackground = '';
var computedWidth,
computedLeft,
computedBottom;
if (isFullScreen) {
computedWidth = currVideo.find('.vjs-control-bar').width() >= 400 ? currVideo.find('.vjs-control-bar').width() : 400;
currVideo.find('.vjs-play-control, .vjs-progress-control, .vjs-download-video').show();
computedBottom = 0;
computedLeft = (screen.width - computedWidth)/2,
computedBackground = 'none';
}
else {
//Place control bar based on orientation of video and how it fits in the frame. This is for wider videos/frames.
if (videoRatio > 1 && videoRatio > actualRatio) {
computedWidth = actualWidth;
computedLeft = 0;
computedBottom = actualWidth * (actualVideo.get(0).videoHeight/actualVideo.get(0).videoWidth);
computedBottom = (actualVideo.height() - computedBottom)/2;
}
else {
computedWidth = actualVideo.height() * (actualVideo.get(0).videoWidth/actualVideo.get(0).videoHeight);
computedLeft = (actualWidth -computedWidth)/2;
computedBottom = 0;
}
}
// Handles narrow videos where all controls don't fit
if (computedWidth < 300) {
currVideo.find('.vjs-play-control, .vjs-duration, .vjs-progress-control, .vjs-download-video').hide();
}
currVideo.find('.vjs-control-bar').css({
'width': computedWidth,
'bottom': computedBottom,
'left': computedLeft,
'background': computedBackground
});
if (currVideo.find('.vjs-playing').length) currVideo.find('.vjs-control-bar').show();
currVideo.addClass('finished-loading-video');
}}