MOBILE-4470 iframe: Fix regression with default values
parent
87c76b3db4
commit
fb7f63732c
|
@ -48,8 +48,8 @@ export class CoreIframeComponent implements OnChanges, OnDestroy {
|
||||||
|
|
||||||
@Input() src?: string;
|
@Input() src?: string;
|
||||||
@Input() id: string | null = null;
|
@Input() id: string | null = null;
|
||||||
@Input() iframeWidth?: string;
|
@Input() iframeWidth = '100%';
|
||||||
@Input() iframeHeight?: string;
|
@Input() iframeHeight = '100%';
|
||||||
@Input() allowFullscreen?: boolean | string;
|
@Input() allowFullscreen?: boolean | string;
|
||||||
@Input() showFullscreenOnToolbar?: boolean | string;
|
@Input() showFullscreenOnToolbar?: boolean | string;
|
||||||
@Input() autoFullscreenOnRotate?: boolean | string;
|
@Input() autoFullscreenOnRotate?: boolean | string;
|
||||||
|
|
Loading…
Reference in New Issue