Remove element from DOM the correct way.

semantics-font
Frode Petterson 2015-04-21 13:56:24 +02:00
parent 51a77c02ab
commit 8433f654af
1 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@
*/ */
actionHandlers.prepareResize = function (iframe, data, respond) { actionHandlers.prepareResize = function (iframe, data, respond) {
responseData = {}; responseData = {};
// Create spaceholder and insert after iframe. // Create spaceholder and insert after iframe.
var spaceholder = document.createElement('div'); var spaceholder = document.createElement('div');
spaceholder.style.height = (iframe.clientHeight - 1) + 'px'; spaceholder.style.height = (iframe.clientHeight - 1) + 'px';
@ -69,7 +69,7 @@
actionHandlers.resize = function (iframe, data, respond) { actionHandlers.resize = function (iframe, data, respond) {
// Resize iframe so all content is visible. // Resize iframe so all content is visible.
iframe.style.height = data.height + 'px'; iframe.style.height = data.height + 'px';
iframe.nextSibling.remove(); iframe.parentNode.removeChild(iframe.nextSibling);
}; };
/** /**