DOI field in metadata pane wasn't clickable (regression)

This commit is contained in:
Dan Stillman 2009-08-08 16:06:57 +00:00
parent 9318d2ad3e
commit 765ee61c4c

View file

@ -452,7 +452,7 @@
label.setAttribute("onclick", "ZoteroPane.loadURI(this.nextSibling.firstChild ? this.nextSibling.firstChild.nodeValue : this.nextSibling.value, event)");
label.setAttribute("tooltiptext", Zotero.getString('pane.item.goToURL.online.tooltip'));
}
else if (fieldName == 'DOI' && val && typeof val == 'String') {
else if (fieldName == 'DOI' && val && typeof val == 'string') {
// Pull out DOI, in case there's a prefix
var doi = Zotero.Utilities.prototype.cleanDOI(val);
if (doi) {