commit ea72af8be86efb87e9c28efd37e1d9ad24454448 parent bbedd3bd93612a8656fdb6b42dcc1825b36c78c5 Author: Dan Stillman <dstillman@zotero.org> Date: Fri, 8 Sep 2006 00:42:46 +0000 Don't break new note creation Diffstat:
| M | chrome/chromeFiles/content/scholar/note.js | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/chrome/chromeFiles/content/scholar/note.js b/chrome/chromeFiles/content/scholar/note.js @@ -57,7 +57,9 @@ function onUnload() var NotifyCallback = { notify: function(){ - noteEditor.note = noteEditor.note; + if (noteEditor.note){ + noteEditor.note = noteEditor.note; + } } }