Guest User

Untitled

a guest
Apr 20th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. ;(function(){
  2.  
  3. var css, elements, structure, mypage;
  4.  
  5. var init = function(){
  6.  
  7. // Inject the page
  8. setupPage();
  9.  
  10. // Fill the Div
  11. fillPage();
  12.  
  13. // Update the Div
  14. // window.addEventListener('resize', fillVars);
  15.  
  16. }
  17.  
  18. var fillPage = function(){
  19.  
  20. }
  21.  
  22. var setupPage = function(){
  23. mypage = window.open("");
  24. mypage.document.write("<html><head><title>MyTitle</title></head><body>test</body></html>");
  25. };
  26.  
  27. init();
  28.  
  29. })(window);
Add Comment
Please, Sign In to add comment