and this is the client: ```/** * @NApiVersion 2.x...
# suitescript
a
and this is the client:
Copy code
/**
 * @NApiVersion 2.x
 * @NScriptType ClientScript
 * @NModuleScope SameAccount
 */
define([],

function() {
	
		function pageInit() {
			
		}
	
		function dostuff() {
			alert('hey');
		}

    return {
        dostuff: dostuff,
        pageInit: pageInit
    };
    
});