From 1c9ed8984e84a717ad4dc0f92cadae72561e69e4 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sat, 12 Apr 2008 21:01:24 +0000 Subject: [PATCH] Fix getImageAt() error in Firefox 3 autocomplete --- components/zotero-autocomplete.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/components/zotero-autocomplete.js b/components/zotero-autocomplete.js index bac2dd74b..607b0c959 100644 --- a/components/zotero-autocomplete.js +++ b/components/zotero-autocomplete.js @@ -63,6 +63,11 @@ ZoteroAutoCompleteResult.prototype.getCommentAt = function(index){ } +ZoteroAutoCompleteResult.prototype.getImageAt = function(index) { + return null; +} + + ZoteroAutoCompleteResult.prototype.getStyleAt = function(index){ return null; }