Requests the specified JavaScript URL or URLs and executes the specified callback (if any) when they have finished loading. If an array of URLs is specified and the browser supports it, the scripts will be loaded in parallel and the callback will be executed after all scripts have fi
(urls, callback, obj, context)
| 380 | @static |
| 381 | */ |
| 382 | js(urls, callback, obj, context) { |
| 383 | this.load('js', urls, callback, obj, context); |
| 384 | } |
| 385 | } |
| 386 | |
| 387 | function loadJS(urls, callback, obj, context) { |