From 09397f3f6593aa460724c22ff46ba255a903e032 Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 11 Aug 2017 01:51:38 +0900 Subject: [PATCH] Refactor --- src/web/app/boot.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/web/app/boot.js b/src/web/app/boot.js index 9905efc94..28540e4b6 100644 --- a/src/web/app/boot.js +++ b/src/web/app/boot.js @@ -45,13 +45,13 @@ if (isMobile) { const meta = document.createElement('meta'); meta.setAttribute('name', 'viewport'); - meta.setAttribute('content', [ - ['width', 'device-width'], - ['initial-scale', '1'], - ['minimum-scale', '1'], - ['maximum-scale', '1'], - ['user-scalable', 'no'] - ].map(x => x.join('=')).join(',')); + meta.setAttribute('content', Object.entries({ + 'width': 'device-width', + 'initial-scale': '1', + 'minimum-scale': '1', + 'maximum-scale': '1', + 'user-scalable': 'no' + }).map(x => x.join('=')).join(',')); head.appendChild(meta); }