(scriptName,func,show)
| 95 | } |
| 96 | |
| 97 | function getScript(scriptName,func,show) |
| 98 | { |
| 99 | var head = document.getElementsByTagName("head")[0]; |
| 100 | var script = document.createElement('script'); |
| 101 | script.id = scriptName; |
| 102 | script.type = 'text/javascript'; |
| 103 | script.onload = func; |
| 104 | script.src = scriptName+'.js'; |
| 105 | head.appendChild(script); |
| 106 | } |
| 107 | |
| 108 | function createIndent(o,domNode,node,level) |
| 109 | { |
no outgoing calls
no test coverage detected