commit 89245e857fe12d36e82cde0f2984bba83d9e0638
parent 50330d9a78c696c9a32d623b35bf9fdfd8dfea87
Author: Simon Kornblith <simon@simonster.com>
Date: Tue, 31 Jan 2012 03:38:56 -0500
Make the dumb validator happy
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/chrome/content/zotero/integration/quickFormat.xul b/chrome/content/zotero/integration/quickFormat.xul
@@ -89,17 +89,17 @@
<menupopup id="locator-label-popup"/>
</menulist>
<textbox id="locator" flex="1"
- oninput="window.setTimeout(Zotero_QuickFormat.onCitationPropertiesChanged, 0)"/>
+ oninput="window.setTimeout(function(event) { Zotero_QuickFormat.onCitationPropertiesChanged(event) }, 0)"/>
</row>
<row align="center">
<label value="&zotero.citation.prefix.label;"/>
<textbox class="citation-textbox" id="prefix" flex="1"
- oninput="window.setTimeout(Zotero_QuickFormat.onCitationPropertiesChanged, 0)"/>
+ oninput="window.setTimeout(function(event) { Zotero_QuickFormat.onCitationPropertiesChanged(event) }, 0)"/>
</row>
<row align="center">
<label value="&zotero.citation.suffix.label;"/>
<textbox class="citation-textbox" id="suffix" flex="1"
- oninput="window.setTimeout(Zotero_QuickFormat.onCitationPropertiesChanged, 0)"/>
+ oninput="window.setTimeout(function(event) { Zotero_QuickFormat.onCitationPropertiesChanged(event) }, 0)"/>
</row>
<html:div>
<html:input type="checkbox" id="suppress-author"