(Testing iframe) |
(test2) |
||
Line 9: | Line 9: | ||
height: 540, | height: 540, | ||
scrolling: 'no', | scrolling: 'no', | ||
src: 'https:// | src: 'https://yume-2kki-explorer.herokuapp.com/', | ||
width: 720 | width: 720 | ||
}) | }) |
Revision as of 21:24, 28 February 2020
/* Any JavaScript here will be loaded for all users on every page load. */
mw.hook('wikipage.content').add(function($content) {
$content.find('.EmulatorFrame:not(.loaded)').each(function() {
var $this = $(this);
$this.html(
$('<iframe>', {
border: 0,
frameborder: 0,
height: 540,
scrolling: 'no',
src: 'https://yume-2kki-explorer.herokuapp.com/',
width: 720
})
).addClass('loaded');
});
});