BLUSHIF

Untitled

Oct 6th, 2018
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. var dosbox = new Dosbox({
  2. id: "dosbox",
  3. onload: function (dosbox) {
  4. var f='ERROR';
  5. var n;
  6. if ( location.search.match(/ftl=([^&]*)/i) ){f = location.search.match(/ftl=([^&]*)/i)[1];}
  7. if ( location.search.match(/fl=([^&]*)/i) ){n = location.search.match(/fl=([^&]*)/i)[1];}
  8. console.log(f+","+n);
  9. dosbox.run(decodeURIComponent(f),decodeURIComponent(n));
  10. },
  11. onrun: function (dosbox, app) {
  12. console.log("App'"+app+"'is running");
  13. }
  14. });
Advertisement
Add Comment
Please, Sign In to add comment