Fixes #812, Word plugin should remember last used collection

Now shares pref with main Zotero interface

Sean, open a new ticket if you think the pref should be stored in the Word document itself.
This commit is contained in:
Dan Stillman 2008-01-30 02:41:03 +00:00
parent 528c8de616
commit 0716eda75d

View File

@ -61,11 +61,26 @@ function onCollectionSelected()
{
var collection = collectionsView._getItemAtRow(collectionsView.selection.currentIndex);
collection.setSearch('');
itemsView = new Zotero.ItemTreeView(collection, (window.arguments[1] ? true : false));
document.getElementById('zotero-items-tree').view = itemsView;
try {
Zotero.UnresponsiveScriptIndicator.disable();
itemsView = new Zotero.ItemTreeView(collection, (window.arguments[1] ? true : false));
document.getElementById('zotero-items-tree').view = itemsView;
}
finally {
Zotero.UnresponsiveScriptIndicator.enable();
}
if (collection.isLibrary()) {
Zotero.Prefs.set('lastViewedFolder', 'L');
}
if (collection.isCollection()) {
Zotero.Prefs.set('lastViewedFolder', 'C' + collection.ref.getID());
}
else if (collection.isSearch()) {
Zotero.Prefs.set('lastViewedFolder', 'S' + collection.ref.id);
}
}
}
function onSearch()