Force old chrome installs to force-enable the zoom limit
This commit is contained in:
parent
19e021ce8e
commit
9beeffc679
@ -476,6 +476,31 @@ const ExtensionConfPatch = [
|
|||||||
// do nothing
|
// do nothing
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}, {
|
||||||
|
forVersion: '5.0.2',
|
||||||
|
updateFn: (userOptions, defaultOptions) => {
|
||||||
|
try {
|
||||||
|
if (! userOptions.mitigations) {
|
||||||
|
userOptions.mitigations = {
|
||||||
|
zoomLimit: {
|
||||||
|
enabled: true,
|
||||||
|
limit: 0.997,
|
||||||
|
fullscreenOnly: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (BrowserDetect.chrome) {
|
||||||
|
userOptions.mitigations = {
|
||||||
|
zoomLimit: {
|
||||||
|
enabled: true,
|
||||||
|
limit: 0.997,
|
||||||
|
fullscreenOnly: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
// do nothing
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user