* Get the correct script for the gist. * * Use writeScript: Failed to execute 'write' on 'Document': It isn't possible * to write into a document from an asynchronously-loaded external script unless * it is explicitly opened. * * @param {!Window} global * @param {string} scriptSource The sour
(global, scriptSource, cb)
| 14 | * @param {function()} cb |
| 15 | */ |
| 16 | function getGistJs(global, scriptSource, cb) { |
| 17 | writeScript(global, scriptSource, function () { |
| 18 | cb(); |
| 19 | }); |
| 20 | } |
| 21 | |
| 22 | /** |
| 23 | * @param {!Window} global |
no test coverage detected