From 0387c043a34a157d81c62db1068ec1f06ecbbaa6 Mon Sep 17 00:00:00 2001
From: Chris Hallberg <crhallberg@gmail.com>
Date: Mon, 23 May 2016 10:22:37 -0400
Subject: [PATCH] Autocomplete cache clearing bug fix.

---
 themes/bootstrap3/js/autocomplete.js | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/themes/bootstrap3/js/autocomplete.js b/themes/bootstrap3/js/autocomplete.js
index efa8b06d37a..0747fa8b77f 100644
--- a/themes/bootstrap3/js/autocomplete.js
+++ b/themes/bootstrap3/js/autocomplete.js
@@ -1,6 +1,6 @@
 /*global jQuery, window, document, console, setTimeout, clearTimeout */
 /**
- * crhallberg/autocomplete.js 0.14
+ * crhallberg/autocomplete.js 0.14.1
  * ~ @crhallberg
  */
 (function ( $ ) {
@@ -240,11 +240,6 @@
 
   $.fn.autocomplete = function(settings) {
 
-    if ('undefined' == typeof settings.handler) {
-      console.error('handler function not provided for autocomplete');
-      return this;
-    }
-
     options = $.extend( {}, options, settings );
 
     return this.each(function() {
@@ -262,6 +257,9 @@
           cache[cid] = {};
         }
         return input;
+      } else if ('undefined' == typeof settings.handler) {
+        console.error('handler function not provided for autocomplete');
+        return this;
       } else {
         element = $('.autocomplete-results');
         if (element.length == 0) {
-- 
GitLab