Skip to content

Commit

Permalink
Test VSCode commit
Browse files Browse the repository at this point in the history
  • Loading branch information
AlecDusheck committed Mar 12, 2019
1 parent f83aac7 commit 74c743c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export class PanelFileEditorComponent extends ResponsiveServerPage implements On
private getContents = async (): Promise<void> => {
this.loading = true;
this.editName = this.activatedRoute.snapshot.queryParams['f'];
console.log("edit name: " + this.editName);
console.log('edit name: ' + this.editName);

try {
this.editForm.controls.content.setValue(await this.serverActions.getFileContents(this.editName));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,17 @@ export class PanelFilesComponent extends ResponsiveServerPage implements OnInit,
this.currentPath = '/';
// Make sure the server isn't blocked
if (this.serverSocket.blockedSource.value) {
console.log("blocked true");
console.log('blocked true');
return;
}

console.log("load data called");
console.log('load data called');

await this.updateFileListing();
};

updateFileListing = async (): Promise<void> => {
console.log("called")
console.log('called')
this.loading = true;

try {
Expand Down
2 changes: 1 addition & 1 deletion src/app/services/server-socket-io.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export class ServerSocketIOService {
this.ioSocket.on('block', this.handleBlock);
this.ioSocket.on('installed', this.handleInstalled);
this.ioSocket.on('disconnect', () => {
console.log("called disconnect");
console.log('called disconnect');
// this.ioSocket.removeListener('initialStatus', this.handleInitial);
// this.ioSocket.removeListener('statusUpdate', this.handleStatus);
// this.ioSocket.removeListener('console', this.handleConsole);
Expand Down

0 comments on commit 74c743c

Please sign in to comment.