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) {
|
var global = (function (module) {
|
||||||
|
|
||||||
function testFunction() {
|
module.testFunction = function () {
|
||||||
console.log("test!");
|
console.log("Test function works!");
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
testFunction: testFunction
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
return module;
|
||||||
|
|
||||||
})(global || {});
|
})(global || {});
|
|
@ -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!");
|
||||||
})();
|
})();
|
Loading…
Add table
Reference in a new issue