From 481551e5fba68c6ae2641b86703353180fa86761 Mon Sep 17 00:00:00 2001 From: nyuszika7h Date: Tue, 27 Oct 2020 23:08:26 +0100 Subject: Fix inconsistent indentation and trailing whitespace --- content_script.js | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'content_script.js') diff --git a/content_script.js b/content_script.js index ad0992d..d62d550 100644 --- a/content_script.js +++ b/content_script.js @@ -2,9 +2,9 @@ injectScripts(); async function injectScripts() { - await injectScript('lib/pbf.3.0.5.min.js'); - await injectScript('lib/cryptojs-aes_0.2.0.min.js'); - await injectScript('protobuf-generated/license_protocol.proto.js'); + await injectScript('lib/pbf.3.0.5.min.js'); + await injectScript('lib/cryptojs-aes_0.2.0.min.js'); + await injectScript('protobuf-generated/license_protocol.proto.js'); await injectScript('content_key_decryption.js'); @@ -13,14 +13,14 @@ async function injectScripts() function injectScript(scriptName) { - return new Promise(function(resolve, reject) - { - var s = document.createElement('script'); - s.src = chrome.extension.getURL(scriptName); - s.onload = function() { - this.parentNode.removeChild(this); - resolve(true); - }; - (document.head||document.documentElement).appendChild(s); - }); -} \ No newline at end of file + return new Promise(function(resolve, reject) + { + var s = document.createElement('script'); + s.src = chrome.extension.getURL(scriptName); + s.onload = function() { + this.parentNode.removeChild(this); + resolve(true); + }; + (document.head||document.documentElement).appendChild(s); + }); +} -- cgit v1.2.3