Don't do anything on double-click of Unfiled Items

This commit is contained in:
Dan Stillman 2011-02-14 07:44:22 +00:00
parent aa81249e5e
commit 2324992ac3

View File

@ -2346,6 +2346,10 @@ var ZoteroPane = new function()
}
if (itemGroup.isSearch()) {
// Don't do anything on double-click of Unfiled Items
if ((itemGroup.ref.id + "").match(/^8634533000/)) { // 'UNFILED000'
return;
}
ZoteroPane.editSelectedCollection();
return;
}