From aa62fe5865a55fac3da45357b6c17822c9c39b4d Mon Sep 17 00:00:00 2001 From: MichaelH <> Date: Sat, 2 Nov 2019 16:47:51 -0600 Subject: [PATCH] fix typo in aria attribute of vg fullscreen template --- src/controls/vg-fullscreen/vg-fullscreen.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controls/vg-fullscreen/vg-fullscreen.ts b/src/controls/vg-fullscreen/vg-fullscreen.ts index 32815142..fe87f9f1 100644 --- a/src/controls/vg-fullscreen/vg-fullscreen.ts +++ b/src/controls/vg-fullscreen/vg-fullscreen.ts @@ -67,7 +67,7 @@ export class VgFullscreen implements OnInit, OnDestroy { } onChangeFullscreen(fsState: boolean) { - this.ariaValue = fsState ? 'fullscren mode' : 'normal mode'; + this.ariaValue = fsState ? 'fullscreen mode' : 'normal mode'; this.isFullscreen = fsState; }