Removed unneeded comments
This commit is contained in:
@@ -10,8 +10,8 @@ const tools = new Map();
|
||||
* @returns {void}
|
||||
*/
|
||||
function importScript(url) {
|
||||
var script = document.createElement("script"); // create a script DOM node
|
||||
script.src = url; // set its src to the provided URL
|
||||
var script = document.createElement("script");
|
||||
script.src = url;
|
||||
document.head.appendChild(script);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user