Hey @Elf_Ears,
We plan on experimenting with a single page code tab in the future. For custom functions, you should still be able to define them.
If the function needs to be used in multiple different tabs, the easiest way to do this is to bind them to the object in the load tab.
In the load tab, create a function like this:
this.functionName = function () {
//function body
} ;
Now, you can access this function from anywhere else in your object.
If the function is only going to be used in 1 tab, you can just define it at the top of that tab normally.
function myFunction () {
//My function's stuff...
}
myFunction();
Let me know if this helps! Hopefully, we can get the experimental single tab out soon!