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