From f07431a14c6e03482eb869c34400886850493813 Mon Sep 17 00:00:00 2001 From: Ibby Hadeed Date: Wed, 23 Nov 2016 08:53:20 -0500 Subject: [PATCH] fix(video-player): scalingMode is number fixes #774 --- src/plugins/video-player.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/video-player.ts b/src/plugins/video-player.ts index 053ad85071..9a1087b713 100644 --- a/src/plugins/video-player.ts +++ b/src/plugins/video-player.ts @@ -13,7 +13,7 @@ export interface VideoOptions { * There are to options for the scaling mode. SCALE_TO_FIT which is default and SCALE_TO_FIT_WITH_CROPPING. * These strings are the only ones which can be passed as option. */ - scalingMode?: string; + scalingMode?: number; } /**