I greatly appreciate your work on load panel but have one comment. I have
noticed that your coding style is very different from standard. While I have
no problem with that I took the liberty to clean it up a bit. If you find
this insulting just tell me and I'll delete the file. If you think it's ok
I'll send it to you and the list. I made only minor changes and didn't
enforce my style but just simple changes in the if statements. If you want I
have a few other differences(like replacing the following kind of
statements:
if (expr.)
var myElm = val;
else
var myElm = val2;
with
var myElm;
if (expr.)
myElm = val;
else
myElm = val2;
or even better
var myElm = expr?val:val2;)
Don't be shy to rock me ;-)
8an
_______________________________________________
Dynapi-Help mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/dynapi-help