Fix HTMLIframeElement remove/removeNode issue in removeResizeListener method

This commit is contained in:
Lucas Styles 2015-10-17 00:35:47 +01:00
parent 6c4c4695d9
commit 4a48e19cac

View File

@ -867,7 +867,7 @@
// Remove the resize detect iframe
if (hiddenIframe) {
hiddenIframe.remove();
hiddenIframe.parentNode.removeChild(hiddenIframe);
}
},
isArray = helpers.isArray = function(obj) {