Skip to content
This repository was archived by the owner on Jan 2, 2021. It is now read-only.

Commit 06c3c5d

Browse files
committed
Fixes for accessibility
1 parent 5d5a109 commit 06c3c5d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

app/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<!DOCTYPE html>
2-
<html>
2+
<html lang="en">
33
<head>
44
<meta charset="utf-8">
55
<title>QR Code Scanner</title>
66
<meta http-equiv=X-UA-Compatible content="IE=edge">
77
<meta name=description content="QR Code Scanner is the fastest and most user-friendly web application.">
8-
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0">
8+
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no">
99
<meta name="mobile-web-app-capable" content="yes">
1010
<meta name="apple-mobile-web-app-title" content="QR Scanner"/>
1111
<meta name="apple-mobile-web-app-status-bar-style" content="#e4e4e4">

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ if (process.env.NODE_ENV === 'production') {
8888
AppCache: false,
8989
publicPath: '/',
9090
excludes: ['*.txt', '*.svg', 'CNAME', '**/.DS_Store', 'images/*.*', 'images/touch/*.*', 'images/touch/*.*', '**/*.map'],
91-
externals: ['images/touch/favicon.ico', 'images/touch/favicon-16x16.png', 'images/touch/favicon-32x32.png', 'images/touch/apple-touch-icon.jpg', 'images/touch/android-chrome-512x512.png', 'images/touch/android-chrome-192x192.png', '/decoder.min.js']
91+
externals: ['/index.html?utm_source=homescreen', 'images/touch/favicon.ico', 'images/touch/favicon-16x16.png', 'images/touch/favicon-32x32.png', 'images/touch/apple-touch-icon.jpg', 'images/touch/android-chrome-512x512.png', 'images/touch/android-chrome-192x192.png', '/decoder.min.js']
9292
})
9393
);
9494
config.plugins.push(

0 commit comments

Comments
 (0)