zotero/chrome/chromeFiles/content/scholar/searchDialog.js
Dan Stillman f7aafec402 Addresses #63, Add ECL license info to source code
Stripped GPL text and removed ECL license for now -- leaving in copyright notice where it exists
2006-08-30 06:00:44 +00:00

28 lines
No EOL
567 B
JavaScript

/*
Zotero
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);
io.dataOut = document.getElementById('search-box').save();
}