zotero/chrome/chromeFiles/content/scholar/note.js
David Norton 3a3b6ab70d Fixes #30, clicking on note in the hierarchical view shows contents of the note in the right panel.
- Generally, restructured the way that editing notes works: there is now a <noteeditor> control.
2006-06-28 18:30:29 +00:00

45 lines
No EOL
872 B
JavaScript

var noteEditor;
function onLoad()
{
noteEditor = document.getElementById('note-editor');
noteEditor.focus();
var params = new Array();
var b = document.location.href.substr(document.location.href.indexOf('?')+1).split('&');
for(var i = 0; i < b.length; i++)
{
var mid = b[i].indexOf('=');
params[b[i].substr(0,mid)] = b[i].substr(mid+1);
}
var id = params['id'];
if(id && id != '' && id != 'undefined')
{
var ref = Scholar.Items.get(id);
if(ref.isNote())
{
noteEditor.note = ref;
window.title = "Edit Note";
}
else
{
noteEditor.item = ref;
window.title = "Add Note";
}
}
else
{
window.title = "Edit Note";
}
}
function onUnload()
{
if(noteEditor && noteEditor.value)
noteEditor.save();
}
addEventListener("load", function(e) { onLoad(e); }, false);
addEventListener("unload", function(e) { onUnload(e); }, false);