Modify URL for file links Hi,
Our file server is mapped as "H:\" and I would like for the URL zimlet to automatically convert any strings that begin with "H:/" to a link and add "file://" to the beginning.
So I edited url.js to add the following:
if (escapedUrl.substr(0, 3) == 'H:\') {
escapedUrl = "file://" + escapedUrl;
}
but it's not working. Does anybody have any insight on this?
Thanks,
Tony |