From 4983b56a63fbf440c6af902d42fbcb94dadebc69 Mon Sep 17 00:00:00 2001 From: Tagir Almasov Date: Tue, 1 Oct 2019 15:18:09 +0200 Subject: [PATCH] fix a typo in viewport tag The comma was misplaced, causing the minimal scale not to be set in the attribute --- out/simple-live/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/out/simple-live/index.html b/out/simple-live/index.html index 5e24650..af0b068 100644 --- a/out/simple-live/index.html +++ b/out/simple-live/index.html @@ -30,7 +30,7 @@ var initialScale = Math.max(screen.width, screen.height)/1920; - vp.setAttribute('content','width=device-width, initial-scale=' + initialScale + ', maximum-scale=' + initialScale, + 'minimum-scale=' + initialScale); + vp.setAttribute('content','width=device-width, initial-scale=' + initialScale + ', maximum-scale=' + initialScale + ', minimum-scale=' + initialScale);