2006-08-09 11:43:33 +00:00
|
|
|
/*
|
2006-08-30 06:00:44 +00:00
|
|
|
Zotero
|
2006-08-09 11:43:33 +00:00
|
|
|
Copyright (C) 2006 Center for History and New Media, George Mason University, Fairfax, VA
|
|
|
|
http://chnm.gmu.edu/
|
|
|
|
*/
|
|
|
|
|
|
|
|
var itemsView;
|
|
|
|
var collectionsView;
|
|
|
|
var io;
|
|
|
|
|
|
|
|
function doLoad()
|
|
|
|
{
|
|
|
|
io = window.arguments[0];
|
|
|
|
|
|
|
|
document.getElementById('search-box').search = io.dataIn.search;
|
|
|
|
document.getElementById('search-name').value = io.dataIn.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
function doUnload()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function doAccept()
|
|
|
|
{
|
|
|
|
document.getElementById('search-box').search.setName(document.getElementById('search-name').value);
|
2006-08-10 22:39:21 +00:00
|
|
|
io.dataOut = document.getElementById('search-box').save();
|
2006-08-09 11:43:33 +00:00
|
|
|
}
|