| Server IP : 180.180.241.3 / Your IP : 216.73.216.216 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/AppServ/www/news/plugins/content/jw_allvideos/includes/js/ |
Upload File : |
/**
* @version 4.5.0
* @package AllVideos (plugin)
* @author JoomlaWorks - http://www.joomlaworks.net
* @copyright Copyright (c) 2006 - 2013 JoomlaWorks Ltd. All rights reserved.
* @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
*/
var allvideos = {
ready: function(cb) {
/in/.test(document.readyState) ? setTimeout('allvideos.ready('+cb+')', 9) : cb();
},
getRemoteJson: function(url) {
var remoteJsonScript = document.createElement('script');
remoteJsonScript.setAttribute('charset', 'utf-8');
remoteJsonScript.setAttribute('type', 'text/javascript');
remoteJsonScript.setAttribute('async', 'true');
remoteJsonScript.setAttribute('src', url);
return remoteJsonScript;
},
embed: function(el){
var jsonpCallback = el.callback;
var tempId = Math.floor(Math.random()*1000)+1;
var responseContainer = [];
window[jsonpCallback] = function(response){
responseContainer.tempId = [response];
};
var head = document.getElementsByTagName('head')[0];
var jsonp = this.getRemoteJson(el.url);
jsonp.onloadDone = false;
jsonp.onload = function(){
if (!jsonp.onloadDone){
jsonp.onloadDone = true;
document.getElementById(el.playerID).innerHTML = responseContainer.tempId[0].html;
}
};
jsonp.onreadystatechange = function(){
if (("loaded" === jsonp.readyState || "complete" === jsonp.readyState) && !jsonp.onloadDone) {
jsonp.onloadDone = true;
document.getElementById(el.playerID).innerHTML = responseContainer.tempId[0].html;
}
}
head.appendChild(jsonp);
}
}