lots of formatting fixes,

added functionindex to docapplication
This commit is contained in:
stefanp 2002-11-22 11:39:11 +00:00
parent 7633e98eea
commit 604ab4f8ba
18 changed files with 219 additions and 116 deletions

View file

@ -75,9 +75,9 @@ function appStat () {
* utility function to sort object-arrays by name
*/
function sortByName(a,b) {
if ( a.name>b.name)
if ( a.getName () > b.getName ())
return 1;
else if ( a.name==b.name )
else if (a.getName () == b.getName ())
return 0;
else
return -1;