Skip to content

Commit

Permalink
updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Navbryce committed Aug 23, 2020
1 parent 37abebf commit 3da7fbf
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"ng2-pdf-viewer": "^6.3.2",
"path": "^0.12.7",
"rxjs": "^6.6.2",
"rxjs-compat": "^6.0.0-rc.0",
"rxjs-compat": "^6.6.2",
"tslib": "^1.13.0",
"zone.js": "^0.10.3"
},
Expand Down
2 changes: 1 addition & 1 deletion src/app/basic/components/menu-bar/menu-bar-item.class.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Observable} from 'rxjs/Observable';
import {Observable} from 'rxjs';

export class MenuBarItem {
constructor (public name: String, public eventListener: Function, public link: Observable<string> = null,
Expand Down
2 changes: 1 addition & 1 deletion src/app/basic/filesystem.class.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// event
import { BehaviorSubject } from 'rxjs/BehaviorSubject';
import { BehaviorSubject } from 'rxjs';

// environment
import { environment } from '../../environments/environment';
Expand Down
2 changes: 1 addition & 1 deletion src/app/programs/browser/browser.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { TaskbarService } from '../../services';

// environment
import { environment } from '../../../environments/environment';
import {BehaviorSubject} from 'rxjs/BehaviorSubject';
import {BehaviorSubject} from 'rxjs';

@Component({
selector: 'browser',
Expand Down
4 changes: 3 additions & 1 deletion src/app/programs/program-component.class.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ import { WindowComponent } from '../window';
// functions
import { generateId } from '../functions';

@Injectable({providedIn: 'any'})
@Component({
template: ''
})
export abstract class ProgramComponent extends CustomComponent implements OnInit {
public defaultId: string; // debugging purposes
public id: string;
Expand Down
2 changes: 1 addition & 1 deletion src/app/services/taskbar.service.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Injectable } from '@angular/core';
import { ProgramListService } from './program-list.service';
import {BehaviorSubject} from 'rxjs/BehaviorSubject';
import {BehaviorSubject} from 'rxjs';

// TODO THIS NEEDS TO BE RENAMED TO PROGRAM CONTROLLER
// IN CHARGE OF UPDATING AND MAINTAINING PROGRAM STATUSES.
Expand Down

0 comments on commit 3da7fbf

Please sign in to comment.