Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. function exportFile() {
  2. window.open("data:text/plain;charset=utf-8," + localStorage.WebAppData);
  3. };
  4.  
  5. window.open("data:text/plain;charset=utf-8," + localStorage.WebAppData);
  6.  
  7. win = window.open("", "win")
  8. win.document.body.innerText = "Line n breaks?"
  9.  
  10. win = window.open("", "win")
  11. win.document.body.innerHTML = "<pre>Line n breaks?</pre>"
  12.  
  13. var data1 = "Line n break. And rn another one";
  14. window.open("data:application/octet-stream, " + encodeURI(data1));
  15.  
  16. var data1 = "Line n break. And rn another one";
  17. window.open("data:application/octet-stream;base64, " + btoa(data1));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement