Prevent running multiple resizer.

semantics-font
Frode Petterson 2015-04-21 15:08:59 +02:00
parent 8433f654af
commit 27a0a33298
1 changed files with 2 additions and 1 deletions

View File

@ -1,8 +1,9 @@
// H5P iframe Resizer
(function () {
if (!window.postMessage || !window.addEventListener) {
if (!window.postMessage || !window.addEventListener || window.h5pResizerInitialized) {
return; // Not supported
}
window.h5pResizerInitialized = true;
// Map actions to handlers
var actionHandlers = {};