From 48f8b8d5bcadc70f189fff72e815702fa0da8227 Mon Sep 17 00:00:00 2001 From: s2 Date: Mon, 20 Nov 2017 11:27:36 +0100 Subject: [PATCH] add some more special chars --- src/popup/pwgen.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/popup/pwgen.js b/src/popup/pwgen.js index 1ced01b..6db85d3 100644 --- a/src/popup/pwgen.js +++ b/src/popup/pwgen.js @@ -1,7 +1,7 @@ function randPassword(length, includeSpecial) { let pwdChars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890"; if (includeSpecial) { - pwdChars += '°^!"§$%&\/()=?`´\\}][{²³€|<>-.,;:*+_'; + pwdChars += '°^!"§$%&/()=?`´\\}][{²³€|<>-.,;:*+_µ@~'; } let randPassword = Array(length).fill(pwdChars).map(function(x) { return x[Math.floor(Math.random() * x.length)]