diff --git a/themes/bootstrap3/js/check_save_statuses.js b/themes/bootstrap3/js/check_save_statuses.js
index 032c7eda006a563e225f76ef173146fd08ddd11c..66556d4d88c2a4d7e3ff294537c1e95f504b74fe 100644
--- a/themes/bootstrap3/js/check_save_statuses.js
+++ b/themes/bootstrap3/js/check_save_statuses.js
@@ -22,7 +22,7 @@ function checkSaveStatuses() {
     })
     .done(function(response) {
       for (var rn in response.data) {
-        var list = $('#result'+rn).find('.savedLists')
+        var list = $('#result'+rn).find('.savedLists');
         if (list.length == 0) {
           list = $('.savedLists');
         }
@@ -39,5 +39,5 @@ function checkSaveStatuses() {
 }
 
 $(document).ready(function() {
-  checkSaveStatuses()
+  checkSaveStatuses();
 });
diff --git a/themes/bootstrap3/js/lightbox.js b/themes/bootstrap3/js/lightbox.js
index 5ac629f9c6ed3749c0db388763623ebc19583891..4c4f0d3c7faee4b0b8b341f136ee7f68ed12b5c7 100644
--- a/themes/bootstrap3/js/lightbox.js
+++ b/themes/bootstrap3/js/lightbox.js
@@ -75,24 +75,24 @@ var Lightbox = {
    * We store all the ajax calls in case we need to cancel.
    * This function cancels the previous call and creates a new one.
    */
-  ajax: function(obj) {
+  ajax: function(obj) {
     if(this.XHR) {
       this.XHR.abort();
     }
-    this.XHR = $.ajax(obj)
+    this.XHR = $.ajax(obj);
     this.XHR.then().fail(function(response, textStatus) {
-      if (textStatus == "abort") { return; }
+      if (textStatus == "abort") { return; }
       if (response.responseJSON) {
-        Lightbox.displayError(response.responseJSON.data);
-      } else {
-        var json = JSON.parse(response.responseText);
-        if (json.data) {
-          Lightbox.displayError(json.data);
-        } else {
-          Lightbox.displayError(response.responseText);
-        }
-      }
-    });
+        Lightbox.displayError(response.responseJSON.data);
+      } else {
+        var json = JSON.parse(response.responseText);
+        if (json.data) {
+          Lightbox.displayError(json.data);
+        } else {
+          Lightbox.displayError(response.responseText);
+        }
+      }
+    });
     return this.XHR;
   },
   /**********************************/
@@ -241,9 +241,9 @@ var Lightbox = {
     this.ajax({
       type:'POST',
       url:url,
-      data:post
-    })
-    .done(callback)
+      data:post
+    })
+    .done(callback)
     .fail(function(response, textStatus) {
       console.log(response, textStatus); // Error reporting
       console.log(url, post);
@@ -480,8 +480,8 @@ $(document).ready(function() {
       url: VuFind.getPath() + '/AJAX/JSON?' + $.param({method:'exportFavorites'}),
       type:'POST',
       dataType:'json',
-      data:Lightbox.getFormData($(evt.target))
-    })
+      data:Lightbox.getFormData($(evt.target))
+    })
     .done(function(data) {
       if(data.data.export_type == 'download' || data.data.needs_redirect) {
         document.location.href = data.data.result_url;
diff --git a/themes/bootstrap3/js/record.js b/themes/bootstrap3/js/record.js
index ed2978931c74f5655855279bd8980f06b89959eb..b57f6b22fa925e143e279b27fcf766c086061f52 100644
--- a/themes/bootstrap3/js/record.js
+++ b/themes/bootstrap3/js/record.js
@@ -151,7 +151,7 @@ function ajaxLoadTab($newTab, tabid, setHash) {
   $.ajax({
     url: path + urlroot + '/AjaxTab',
     type: 'POST',
-    data: {tab: tabid},
+    data: {tab: tabid}
   })
   .done(function(data) {
     $newTab.html(data);