(path, callback)
| 29 | "use strict"; |
| 30 | |
| 31 | function loadScript(path, callback) { |
| 32 | var script = document.createElement('script'); |
| 33 | script.async = false; |
| 34 | script.src = path; |
| 35 | script.type = 'text/javascript'; |
| 36 | script.onload = callback || script.onload; |
| 37 | document.getElementsByTagName('head')[0].appendChild(script); |
| 38 | } |
| 39 | |
| 40 | function init(callback) { |
| 41 | var pluginCSS; |