diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js index f5578a3b89..fba547ca3b 100644 --- a/chrome/content/zotero/xpcom/zotero.js +++ b/chrome/content/zotero/xpcom/zotero.js @@ -610,6 +610,9 @@ var Zotero = new function(){ if (typeof value == 'function'){ dumped_text += level_padding + "'" + item + "' => function(...){...} \n"; } + else if (typeof value == 'number') { + dumped_text += level_padding + "'" + item + "' => " + value + "\n"; + } else { dumped_text += level_padding + "'" + item + "' => \"" + value + "\"\n"; }