From f5597334db2fe27a25cef7051208e818e9ca2f7d Mon Sep 17 00:00:00 2001 From: Aaron Yarborough Date: Fri, 10 Feb 2017 14:41:34 +0000 Subject: [PATCH] Script updates before testing. --- BankingBot/ScriptManagement/Scripts/global.js | 10 ++++------ BankingBot/ScriptManagement/Scripts/test.js | 7 +++++++ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/BankingBot/ScriptManagement/Scripts/global.js b/BankingBot/ScriptManagement/Scripts/global.js index b277dd7..0bc6047 100644 --- a/BankingBot/ScriptManagement/Scripts/global.js +++ b/BankingBot/ScriptManagement/Scripts/global.js @@ -1,11 +1,9 @@ var global = (function (module) { - function testFunction() { - console.log("test!"); - } - - return { - testFunction: testFunction + module.testFunction = function () { + console.log("Test function works!"); }; + return module; + })(global || {}); \ No newline at end of file diff --git a/BankingBot/ScriptManagement/Scripts/test.js b/BankingBot/ScriptManagement/Scripts/test.js index 270eef8..4d3fe4b 100644 --- a/BankingBot/ScriptManagement/Scripts/test.js +++ b/BankingBot/ScriptManagement/Scripts/test.js @@ -1,3 +1,10 @@ (function () { + // Do the placeholders work? var netVersion = __$netVersion; + + // Do the modules work? + global.testFunction(); + + // Do the alerts work? + alert("Alerts work!"); })(); \ No newline at end of file