Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ianthomas23 committed Sep 5, 2024
1 parent cb18363 commit 399268c
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/terminal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,15 @@ export class Terminal implements ITerminal {
* Construct a new Terminal.
*/
constructor(readonly options: ITerminal.IOptions) {

console.log("OPTIONS", options)
console.log("HREF", window.location.href)
console.log("terminal import.meta.url", import.meta.url);
console.log('OPTIONS', options);
console.log('HREF', window.location.href);
console.log('terminal import.meta.url', import.meta.url);

this._shell = new Shell({
mountpoint: '/drive',
driveFsBaseUrl: options.baseUrl,
wasmBaseUrl: window.location.href, // should probably be PageConfig
outputCallback: this._outputCallback.bind(this),
wasmBaseUrl: window.location.href, // should probably be PageConfig
outputCallback: this._outputCallback.bind(this)
});
}

Expand Down

0 comments on commit 399268c

Please sign in to comment.