Script updates before testing.
This commit is contained in:
parent
e660ae49f0
commit
f5597334db
2 changed files with 11 additions and 6 deletions
|
@ -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 || {});
|
|
@ -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!");
|
||||
})();
|
Loading…
Add table
Reference in a new issue