MTNathan
12/13/2019, 5:08 PM/**
* @NApiVersion 2.x
* @NScriptType ClientScript
*/
define([],function() {
function pageInitTest(context) {
console.log('Start page init');
}
function testFunction(options) {
console.log('Start test function');
}
return {
'pageInit':pageInitTest,
'testFunction':testFunction
};
});
Notably, the pageInit is also not firing.