In file1.js inside a function I need to call a function which is actually included in file2.js
How can I do it?
Thank you
Later edit: This is what I want:
function back(){
if (step!=0){
dijit.byId('stackContainer').back();
}else{
//here I should call the save() function from file2.js
}
}