mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-25 01:06:04 +00:00
Remove minimum and maximum scale meta
This commit is contained in:
parent
9d1c798f0d
commit
5f4fe05e8f
1 changed files with 12 additions and 4 deletions
|
@ -1540,10 +1540,18 @@ public class HtmlHelper {
|
|||
String[] param = content.split("[;,]");
|
||||
for (int i = 0; i < param.length; i++) {
|
||||
String[] kv = param[i].split("=");
|
||||
if (kv.length == 2 &&
|
||||
"user-scalable".equals(kv[0].replace(" ", ""))) {
|
||||
kv[1] = "yes";
|
||||
param[i] = TextUtils.join("=", kv);
|
||||
if (kv.length == 2) {
|
||||
switch (kv[0].replace(" ", "").toLowerCase()) {
|
||||
case "user-scalable":
|
||||
kv[1] = "yes";
|
||||
param[i] = TextUtils.join("=", kv);
|
||||
break;
|
||||
case "minimum-scale":
|
||||
case "maximum-scale":
|
||||
kv[0] = "disabled-scaling";
|
||||
param[i] = TextUtils.join("=", kv);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
meta.attr("content", TextUtils.join(", ", param));
|
||||
|
|
Loading…
Reference in a new issue