We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f348541 commit 13965daCopy full SHA for 13965da
iframe.html
@@ -59,15 +59,15 @@
59
60
let metaString = '';
61
if (contentScale_s) {
62
- metaString += `initial-scale=${contentScale_s}`;
+ metaString += `initial-scale=${contentScale_s}, `;
63
}
64
65
if (!allowWebViewZoom) {
66
metaString += `maximum-scale=${contentScale_s}`;
67
68
69
const viewport = document.querySelector('meta[name=viewport]');
70
- viewport.setAttribute('content', 'width=device-width,' + metaString);
+ viewport.setAttribute('content', 'width=device-width, ' + metaString);
71
72
var tag = document.createElement('script');
73
tag.src = 'https://www.youtube.com/iframe_api';
0 commit comments