diff --git a/themes/bootstrap3/js/common.js b/themes/bootstrap3/js/common.js
index 989b1e6a22c3c9950ba915b9f291c8e6caf65f7d..b58310d703c4256b5734e78759b6225802b03155 100644
--- a/themes/bootstrap3/js/common.js
+++ b/themes/bootstrap3/js/common.js
@@ -244,7 +244,7 @@ function setupAutocomplete() {
   // If .autocomplete class is missing, autocomplete is disabled and we should bail out.
   var searchbox = $('#searchForm_lookfor.autocomplete');
   if (searchbox.length < 1) {
-      return;
+    return;
   }
   var cacheObj = {};
   // Search autocomplete
@@ -286,9 +286,9 @@ function setupAutocomplete() {
   // Update autocomplete on type change
   $('#searchForm_type').change(function searchTypeChange() {
     for (var i in cacheObj) {
-        for (var j in cacheObj[i]) {
-            delete cacheObj[i][j];
-        }
+      for (var j in cacheObj[i]) {
+        delete cacheObj[i][j];
+      }
     }
   });
 }
diff --git a/themes/bootstrap3/js/lib/autocomplete.js b/themes/bootstrap3/js/lib/autocomplete.js
index 52c36df0c5c93f3c52ae021aa2c6e151f2ba6e24..35ce87424d4dc20a533218bf3a02518b43e03227 100644
--- a/themes/bootstrap3/js/lib/autocomplete.js
+++ b/themes/bootstrap3/js/lib/autocomplete.js
@@ -5,7 +5,7 @@
 
   function Factory(_input, settings) {
     var cache = (typeof(settings) === "object" && typeof(settings.cacheObj) === "object")
-        ? settings.cacheObj : {};
+      ? settings.cacheObj : {};
     return (function acClosure() {
       var input = $(this),
         options;