From 412bf73a3ce2b565e46bc8923f91999d8f1241e4 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Wed, 29 Nov 2006 05:08:20 +0000 Subject: [PATCH] Fix broken tag selector --- chrome/content/zotero/bindings/tagselector.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/bindings/tagselector.xml b/chrome/content/zotero/bindings/tagselector.xml index 78f40cf41..1af503d16 100644 --- a/chrome/content/zotero/bindings/tagselector.xml +++ b/chrome/content/zotero/bindings/tagselector.xml @@ -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);