only send init if iframe has src

This commit is contained in:
j 2014-09-23 23:58:53 +02:00
parent 728d6b1b7e
commit 4a2751839f

View file

@ -130,9 +130,11 @@
self.messageCallbacks = self.messageCallbacks || {}; self.messageCallbacks = self.messageCallbacks || {};
that.on({ that.on({
load: function init() { load: function init() {
// send oxid to iframe if (that.attr('src')) {
that.postMessage({init: {oxid: that.oxid}}); // send oxid to iframe
self.initTimeout = setTimeout(init, 25); that.postMessage({init: {oxid: that.oxid}});
self.initTimeout = setTimeout(init, 250);
}
} }
}).bindEvent({ }).bindEvent({
init: function() { init: function() {