/*! * MediaElement.js * http://www.mediaelementjs.com/ * * Wrapper that mimics native HTML5 MediaElement (audio and video) * using a variety of technologies (pure JavaScript, Flash, iframe) * * Copyright 2010-2017, John Dyer (http://j.hn/) * Maintained by, Rafael Miranda (rafa8626@gmail.com) * License: MIT * */(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o 0) { createFacebookEmbed(mediaFiles[0].src, fbWrapper.options.facebook); } fbWrapper.hide = function () { fbWrapper.stopInterval(); fbWrapper.pause(); if (fbDiv) { fbDiv.style.display = 'none'; } }; fbWrapper.show = function () { if (fbDiv) { fbDiv.style.display = ''; } }; fbWrapper.setSize = function (width, height) { if (fbApi !== null && !isNaN(width) && !isNaN(height)) { fbDiv.style.width = width; fbDiv.style.height = height; } }; fbWrapper.destroy = function () {}; fbWrapper.interval = null; fbWrapper.startInterval = function () { fbWrapper.interval = setInterval(function () { var event = mejs.Utils.createEvent('timeupdate', fbWrapper); mediaElement.dispatchEvent(event); }, 250); }; fbWrapper.stopInterval = function () { if (fbWrapper.interval) { clearInterval(fbWrapper.interval); } }; return fbWrapper; } }; mejs.Utils.typeChecks.push(function (url) { return ~url.toLowerCase().indexOf('//www.facebook') ? 'video/x-facebook' : null; }); mejs.Renderers.add(FacebookRenderer); },{}]},{},[1]);