Commit d3a27311 authored by Jakob Moser's avatar Jakob Moser
Browse files

Adjust path of loaded VM files

parent ab947d55
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -12,6 +12,8 @@
* The file `static/index.html` is a modified version of the original `index.html` shipped with the JSLinux demo
* `static/lib/jslinux/css/style.css`
  * Modified paths to scrollbar images
* `static/lib/jslinux/js/jslinux.js`
  * Modified path to VM (call of `loadScript` function)

## Bee icon

+1 −1
Original line number Diff line number Diff line
@@ -603,7 +603,7 @@ function start_vm(user, pwd)
    }
    Module.preRun = start;

    loadScript(vm_url, null);
    loadScript("lib/jslinux/js/"+vm_url, null);  // Adjusted by Jakob Moser to load files from correct paths
}

function on_login()