mirror of https://github.com/opencv/opencv.git
It hasn't been used since f82c04f
. Also, the line adding the script had
an unneeded pathto call, so the script was being loaded from the wrong path
anyway.
pull/3976/head
parent
8c2bde2af4
commit
007a3ef8b6
3 changed files with 1 additions and 14 deletions
@ -1,12 +0,0 @@ |
||||
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); |
||||
} |
||||
} |
Loading…
Reference in new issue