Joe,
You are right. Thanks for pointing this out. I have tested the javascript
separately before merging and testing it in console jsps. I missed this
during the reorg. Will fix it right away.
Vamsi
On 1/5/07, Joe Bohn <[EMAIL PROTECTED]> wrote:
Vamsi,
Shouldn't the localFile.split in the if below use "/" for *nix instead
of "\\"? If so, then it needs to be corrected in each of the jsps that
were changed.
Joe
[EMAIL PROTECTED] wrote:
> + // Split the path
> + var pathParts = localFile.split("\\"); // Assuming windows file
delim
> + if(localFile.indexOf("/") > 0) // May be *nix delim
> + pathParts = localFile.split("\\");