From: gfawcett Date: Wed, 20 Apr 2011 03:19:39 +0000 (+0000) Subject: conifer/static/edit_site.js: when creating a site, allow students to be listed as... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=00340642d17565e9a85dbfa2e6fcd52b4e44e7c5;p=syrup%2Fmasslnc.git conifer/static/edit_site.js: when creating a site, allow students to be listed as the site owners. This alleviates an issue that the Leddy staff encountered; sometimes sessionals are primarily students, and they were not appearing in the non-student fuzzy-lookup list. git-svn-id: svn://svn.open-ils.org/ILS-Contrib/servres/trunk@1408 6d9bc8c9-1ec2-4278-b937-99fde70a366f --- diff --git a/conifer/static/edit_site.js b/conifer/static/edit_site.js index 2765537..003b760 100644 --- a/conifer/static/edit_site.js +++ b/conifer/static/edit_site.js @@ -1,6 +1,7 @@ $(function() { var fuzzy = fuzzyFinder( '#fuzzyinput', '#fuzzypanel', '#fuzzyedit', '#fuzzyview', '#fuzzyname', '#fuzzychange', '#owner'); + fuzzy.includeStudents = true; $('#id_start_term').change(onStartTermChange); });