Advertisement
Guest User

prueba

a guest
Jul 17th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var Main={};
  2.  
  3. Main.onLoad=function(){};
  4. Main.onUnload=function(){};
  5. Main.MainKeyHandler=function(){};
  6.  
  7. var url = "http://app.xsmart.tv/?ver=lite&size=540";
  8. if(window.location){
  9.     window.location = url;
  10. }else if(document.location){
  11.     document.location = url;
  12. }else{
  13.     document.body.innerHTML='<iframe id="xFrame" style="width:100%;height:100%;top:0;left:0;z-index:999;" src="'+url+'" scrolling="no" ></iframe>'
  14.     window.frames.xFrame.focus();
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement