(src, cb)
| 70 | } |
| 71 | |
| 72 | function loadScript(src, cb) { |
| 73 | var script = document.createElement('script'); |
| 74 | script.type = 'text/javascript'; |
| 75 | script.src = src; |
| 76 | |
| 77 | if(cb) { |
| 78 | script.onload = cb; |
| 79 | } |
| 80 | |
| 81 | document.body.appendChild(script); |
| 82 | } |
| 83 | |
| 84 | function _handleAction(text) { |
| 85 | if(_instance.action.addMessage) { |
no outgoing calls
no test coverage detected
searching dependent graphs…