window.bcplugin = {}; bcplugin.brightcoveSetup = function() { function isIOS() { var types = ["iPad", "iPhone", "iPod"]; var numTypes = types.length; var agent = navigator.userAgent; for (var i = 0; i < numTypes; i++) { if (agent.match(new RegExp(types[i], "i"))) { return true; } } return false; } if (isIOS()) { var playerHtml = ""; playerHtml += [...]
More...