openvidu-ionic: Fixed breaking changes by upgrading to Ionic4

This commit is contained in:
CSantos 2019-02-21 14:52:03 +01:00
parent 0fbaf1ee9d
commit c13ea9d587
3 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@
}
#join-button {
padding-top: 20px;
margin-top: 20px;
}
#session-header {

View File

@ -32,7 +32,7 @@
<ion-fab vertical="bottom" horizontal="end" slot="fixed">
<ion-fab-button id="settings-button" [disabled]="!mySessionId && !myUserName" (click)="presentSettingsAlert()"
mini color="dark">
size="small" color="dark">
<ion-icon name="settings"></ion-icon>
</ion-fab-button>
</ion-fab>
@ -63,7 +63,7 @@
</ion-grid>
<ion-fab vertical="bottom" horizontal="center" slot="fixed">
<ion-fab-button mini color="danger" (click)="leaveSession()">
<ion-fab-button size="small" color="danger" (click)="leaveSession()">
<ion-icon name="power"></ion-icon>
</ion-fab-button>
</ion-fab>

View File

@ -5,7 +5,7 @@ declare var cordova;
@Component({
selector: 'ov-video',
template: '<video #videoElement></video>'
template: '<video #videoElement style="width: 100%"></video>'
})
export class OpenViduVideoComponent implements AfterViewInit, OnDestroy {