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) { var global = (function (module) {
function testFunction() { module.testFunction = function () {
console.log("test!"); console.log("Test function works!");
}
return {
testFunction: testFunction
}; };
return module;
})(global || {}); })(global || {});

View file

@ -1,3 +1,10 @@
(function () { (function () {
// Do the placeholders work?
var netVersion = __$netVersion; var netVersion = __$netVersion;
// Do the modules work?
global.testFunction();
// Do the alerts work?
alert("Alerts work!");
})(); })();