remove not used dom fragment, leftover from old code version

This commit is contained in:
Ralf Becker 2016-06-13 16:03:32 +02:00
parent 6c87e540d6
commit 1778f8ef37

View File

@ -426,10 +426,6 @@ etemplate2.prototype.load = function(_name, _url, _data, _callback, _app, _no_et
}; };
} }
// Create the document fragment into which the HTML will be injected
var frag = document.createDocumentFragment();
// Clear any existing instance // Clear any existing instance
this.clear(); this.clear();
@ -478,9 +474,6 @@ etemplate2.prototype.load = function(_name, _url, _data, _callback, _app, _no_et
// Connect to the window resize event // Connect to the window resize event
jQuery(window).on("resize."+this.uniqueId, this, function(e) {e.data.resize(e);}); jQuery(window).on("resize."+this.uniqueId, this, function(e) {e.data.resize(e);});
// Insert the document fragment to the DOM Container
this.DOMContainer.appendChild(frag);
if(egw.debug_level() >= 3 && console.groupEnd) if(egw.debug_level() >= 3 && console.groupEnd)
{ {
egw.window.console.groupEnd(); egw.window.console.groupEnd();