mirror of https://github.com/OpenVidu/openvidu.git
openvidu-server dashboard to Angular 8
parent
5086e5dbd6
commit
b6ea4d0584
File diff suppressed because it is too large
Load Diff
|
@ -1,43 +1,43 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"@angular/animations": "7.2.10",
|
||||
"@angular/cdk": "7.3.5",
|
||||
"@angular/common": "7.2.10",
|
||||
"@angular/compiler": "7.2.10",
|
||||
"@angular/core": "7.2.10",
|
||||
"@angular/flex-layout": "7.0.0-beta.24",
|
||||
"@angular/forms": "7.2.10",
|
||||
"@angular/http": "7.2.10",
|
||||
"@angular/material": "7.3.5",
|
||||
"@angular/platform-browser": "7.2.10",
|
||||
"@angular/platform-browser-dynamic": "7.2.10",
|
||||
"@angular/router": "7.2.10",
|
||||
"core-js": "2.6.5",
|
||||
"@angular/animations": "8.0.0",
|
||||
"@angular/cdk": "8.0.0",
|
||||
"@angular/common": "8.0.0",
|
||||
"@angular/compiler": "8.0.0",
|
||||
"@angular/core": "8.0.0",
|
||||
"@angular/flex-layout": "8.0.0-beta.26",
|
||||
"@angular/forms": "8.0.0",
|
||||
"@angular/http": "7.2.15",
|
||||
"@angular/material": "8.0.0",
|
||||
"@angular/platform-browser": "8.0.0",
|
||||
"@angular/platform-browser-dynamic": "8.0.0",
|
||||
"@angular/router": "8.0.0",
|
||||
"core-js": "3.1.3",
|
||||
"hammerjs": "2.0.8",
|
||||
"jquery": "3.4.1",
|
||||
"openvidu-browser": "2.10.0",
|
||||
"rxjs": "6.4.0",
|
||||
"zone.js": "0.9.0"
|
||||
"rxjs": "6.5.2",
|
||||
"zone.js": "0.9.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular-devkit/build-angular": "0.13.6",
|
||||
"@angular/cli": "7.3.6",
|
||||
"@angular/compiler-cli": "7.2.10",
|
||||
"@angular/language-service": "7.2.10",
|
||||
"@types/jasmine": "3.3.12",
|
||||
"@types/node": "11.11.7",
|
||||
"codelyzer": "5.0.0-beta.2",
|
||||
"jasmine-core": "3.3.0",
|
||||
"@angular-devkit/build-angular": "0.800.1",
|
||||
"@angular/cli": "8.0.1",
|
||||
"@angular/compiler-cli": "8.0.0",
|
||||
"@angular/language-service": "8.0.0",
|
||||
"@types/jasmine": "3.3.13",
|
||||
"@types/node": "12.0.4",
|
||||
"codelyzer": "5.1.0",
|
||||
"jasmine-core": "3.4.0",
|
||||
"jasmine-spec-reporter": "4.2.1",
|
||||
"karma": "4.0.1",
|
||||
"karma": "4.1.0",
|
||||
"karma-chrome-launcher": "2.2.0",
|
||||
"karma-coverage-istanbul-reporter": "2.0.5",
|
||||
"karma-jasmine": "2.0.1",
|
||||
"karma-jasmine-html-reporter": "1.4.0",
|
||||
"protractor": "6.0.0",
|
||||
"ts-node": "8.0.3",
|
||||
"tslint": "5.14.0",
|
||||
"typescript": "3.2.4"
|
||||
"karma-jasmine-html-reporter": "1.4.2",
|
||||
"protractor": "5.4.2",
|
||||
"ts-node": "8.2.0",
|
||||
"tslint": "5.17.0",
|
||||
"typescript": "3.4.5"
|
||||
},
|
||||
"license": "Apache-2.0",
|
||||
"name": "frontend",
|
||||
|
|
|
@ -17,7 +17,7 @@ export class DashboardComponent implements OnInit, OnDestroy {
|
|||
|
||||
websocket: WebSocket;
|
||||
|
||||
@ViewChild('scrollMe') private myScrollContainer: ElementRef;
|
||||
@ViewChild('scrollMe', { static: false }) private myScrollContainer: ElementRef;
|
||||
lockScroll = false;
|
||||
|
||||
infoSubscription: Subscription;
|
||||
|
|
|
@ -7,7 +7,7 @@ import { Subscriber } from 'openvidu-browser';
|
|||
})
|
||||
export class OpenViduVideoComponent implements AfterViewInit {
|
||||
|
||||
@ViewChild('videoElement') elementRef: ElementRef;
|
||||
@ViewChild('videoElement', { static: false }) elementRef: ElementRef;
|
||||
|
||||
_subscriber: Subscriber;
|
||||
|
||||
|
|
Loading…
Reference in New Issue