From 76c118e9e8ee9029a91feafafc5b834c164ea576 Mon Sep 17 00:00:00 2001 From: David Norton Date: Mon, 26 Jun 2006 19:38:56 +0000 Subject: [PATCH] Fixes #25, add metadata to top of note --- chrome/chromeFiles/content/scholar/note.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/chromeFiles/content/scholar/note.js b/chrome/chromeFiles/content/scholar/note.js index b682830763..e74b563e6b 100644 --- a/chrome/chromeFiles/content/scholar/note.js +++ b/chrome/chromeFiles/content/scholar/note.js @@ -19,7 +19,7 @@ function onLoad() item = Scholar.Items.get(params['item']); noteID = params['note']; - document.getElementById('info-label').setAttribute('value',item.getField('title')); + document.getElementById('info-label').appendChild(document.createTextNode(item.getField('title') + " by " + item.getField('firstCreator'))); if(noteID) _notesField.setAttribute('value',item.getNote(noteID)); }