You know there are many functions in Javascript file, it's too complex to when a js file grow up.
What editor can display function and class structure view of Javascript?
Just like Android Studio IDE which can display function and class of a java file.
Js File
function ClassURLPar() {
this.filename;
this.diskindex=0;
this.diskcount=1;
this.imagefilter = 0;
this.sortby = 0;
this.path = "/";
this.view = 0;
this.searchtext;
this.sizemore = 0;
}
var mURL = new ClassURLPar();
function SetMainUIByURLPar() {
InimURL();
SetTabs();
SetFixedNav();
SetControlUI();
SetControlJump();
SetModalForm();
}
function InimURL() {
mURL.filename = window.location.pathname.substring(1);
mURL.diskindex = GetUrlParam('diskindex');
}