From ac47dcfdafd820da005655a5301b52ff2d97eada Mon Sep 17 00:00:00 2001
From: Chris Hallberg <crhallberg@gmail.com>
Date: Tue, 28 Apr 2015 14:20:12 -0400
Subject: [PATCH] Implement search autocomplete update with type change.

---
 themes/bootstrap3/js/common.js | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/themes/bootstrap3/js/common.js b/themes/bootstrap3/js/common.js
index bf777b21207..4e3cc3b27af 100644
--- a/themes/bootstrap3/js/common.js
+++ b/themes/bootstrap3/js/common.js
@@ -332,6 +332,10 @@ $(document).ready(function() {
       }
     }
   );
+  $('#searchForm_type').change(function() {
+    var query = $('#searchForm_lookfor').val();
+    $('#searchForm_lookfor').focus().typeahead('val', '').typeahead('val', query);
+  });
 
   // Checkbox select all
   $('.checkbox-select-all').change(function() {
-- 
GitLab