commit 76c118e9e8ee9029a91feafafc5b834c164ea576 parent 77eadc3ea097571484a7c4f94ef370188561596d Author: David Norton <david@nortoncrew.com> Date: Mon, 26 Jun 2006 19:38:56 +0000 Fixes #25, add metadata to top of note Diffstat:
| M | 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 @@ -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)); }