removed obsolete docs
This commit is contained in:
13
doc/_static/insertIframe.js
vendored
Normal file
13
doc/_static/insertIframe.js
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
function insertIframe (elementId, iframeSrc)
|
||||
{
|
||||
var iframe;
|
||||
if (document.createElement && (iframe = document.createElement('iframe')))
|
||||
{
|
||||
iframe.src = unescape(iframeSrc);
|
||||
iframe.width = "100%";
|
||||
iframe.height = "511px";
|
||||
var element = document.getElementById(elementId);
|
||||
element.parentNode.replaceChild(iframe, element);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user