Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var dosbox = new Dosbox({
- id: "dosbox",
- onload: function (dosbox) {
- var f='ERROR';
- var n;
- if ( location.search.match(/ftl=([^&]*)/i) ){f = location.search.match(/ftl=([^&]*)/i)[1];}
- if ( location.search.match(/fl=([^&]*)/i) ){n = location.search.match(/fl=([^&]*)/i)[1];}
- console.log(f+","+n);
- dosbox.run(decodeURIComponent(f),decodeURIComponent(n));
- },
- onrun: function (dosbox, app) {
- console.log("App'"+app+"'is running");
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment