Fix broken tag selector

This commit is contained in:
Dan Stillman 2006-11-29 05:08:20 +00:00
parent 2ccdd3a51d
commit 412bf73a3c

View File

@ -70,7 +70,7 @@
// Regenerate list
for (var tagID in tags){
var label = document.createElement('label');
label.setAttribute('onclick', "this.parentNode.parentNode.parentNode.parentNode.handleTagClick(this)");
label.setAttribute('onclick', "this.parentNode.parentNode.parentNode.handleTagClick(this)");
label.className = 'zotero-clicky';
label.setAttribute('value', tags[tagID]);
tagsToggleDiv.appendChild(label);