function direct_download_link_add(pageURL, fileElem, fileRegexp, linkDest) {
var element = document.getElementById(fileElem);
if (!element) {
- alert('DirectDL (' + pageURL + '): Cannot find the element containing the file URL.');
+ alert('DirectDL (' + pageURL + '): Cannot find the element ' + fileElem + ' containing the file URL.');
return null;
}
var content = element.textContent;
if (!content) {
- alert('DirectDL (' + pageURL + '): textContent is null, cannot fild file URL.');
+ alert('DirectDL (' + pageURL + '): textContent is null, cannot find file URL.');
}
var fileURL = content.match(fileRegexp)[1];