You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
439 B
12 lines
439 B
<script>
|
|
var viewportmeta = document.querySelector('meta[name="viewport"]');
|
|
if (viewportmeta) {
|
|
if (screen.width <= 360) {
|
|
var newScale = screen.width / 360;
|
|
viewportmeta.content = 'width=360, minimum-scale=' + newScale + ', user-scalable=0, maximum-scale=1, initial-scale=' + newScale + '';
|
|
}
|
|
else {
|
|
viewportmeta.content = 'width=device-width, maximum-scale=1.6, initial-scale=1.0';
|
|
}
|
|
}
|
|
</script>
|
|
|