www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 950302d8ee0db62ca746393351a7bc4b8330bba5
parent 67f28eada3505aa51bcb9af6e4a9b3e88daf6da3
Author: Dan Stillman <dstillman@zotero.org>
Date:   Mon, 15 Dec 2014 19:43:58 -0500

Merge pull request #507 from f-mb/quick-search-for-civil-law-case

Allow QuickSearch to search for civil law cases
Diffstat:
Mchrome/content/zotero/xpcom/search.js | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/chrome/content/zotero/xpcom/search.js b/chrome/content/zotero/xpcom/search.js @@ -420,6 +420,8 @@ Zotero.Search.prototype.addCondition = function(condition, operator, value, requ if (condition == 'quicksearch-titleCreatorYear') { this.addCondition('title', operator, part.text, false); this.addCondition('publicationTitle', operator, part.text, false); + this.addCondition('shortTitle', operator, part.text, false); + this.addCondition('court', operator, part.text, false); this.addCondition('year', operator, part.text, false); } else {