Script updates before testing.

This commit is contained in:
Aaron Yarborough 2017-02-10 14:41:34 +00:00
parent e660ae49f0
commit f5597334db
2 changed files with 11 additions and 6 deletions

View file

@ -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 || {});

View file

@ -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!");
})();