%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/old/plugins/content/jw_allvideos/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); } }