diff --git a/chrome/content/zotero/bindings/noteeditor.xml b/chrome/content/zotero/bindings/noteeditor.xml index fb4307b5c..debf12066 100644 --- a/chrome/content/zotero/bindings/noteeditor.xml +++ b/chrome/content/zotero/bindings/noteeditor.xml @@ -389,7 +389,15 @@ @@ -402,7 +410,7 @@ if (!v || v == "") { v = "[" + Zotero.getString('pane.item.noteEditor.clickHere') + "]"; } - + this.id('tagsLabel').value = Zotero.getString('pane.item.tags') + " " + v; ]]> @@ -412,7 +420,15 @@ 0) { - this.id('seeAlsoPopup').showPopup(this.id('seeAlsoLabel'),-1,-1,'popup',0,0); + if (this.id('seeAlsoPopup').openPopupAtScreen) { + var x = this.boxObject.screenX; + var y = this.boxObject.screenY; + this.id('seeAlsoPopup').openPopupAtScreen(x, y, false); + } + // Deprecated method for Firefox 2 + else { + this.id('seeAlsoPopup').showPopup(this.id('seeAlsoLabel'), -1, -1, 'popup'); + } } else { this.id('seeAlso').add();