Fix the NoScript (iframe not loaded) bug with inner iframes

pull/1/head
yflory 2017-01-23 15:07:38 +01:00
parent 82caa1aa8b
commit f8455875a9
3 changed files with 12 additions and 3 deletions

View File

@ -47,7 +47,10 @@
</head>
<body>
<div id="iframe-container">
<iframe id="pad-iframe" src="inner.html"></iframe>
<iframe id="pad-iframe"></iframe>
<script>
document.getElementById('pad-iframe').setAttribute('src', 'inner.html?' + new Date().getTime());
</script>
</div>
</body>
</html>

View File

@ -59,7 +59,10 @@
</style>
</head>
<body>
<iframe id="pad-iframe" src="inner.html"></iframe>
<iframe id="pad-iframe"></iframe>
<script>
document.getElementById('pad-iframe').setAttribute('src', 'inner.html?' + new Date().getTime());
</script>
</body>
</html>

View File

@ -51,7 +51,10 @@
</head>
<body>
<div id="iframe-container">
<iframe id="pad-iframe" src="inner.html"></iframe>
<iframe id="pad-iframe"></iframe>
<script>
document.getElementById('pad-iframe').setAttribute('src', 'inner.html?' + new Date().getTime());
</script>
</div>
</body>
</html>