From 1de4e9c7f053aafdc92aef6b8f4448f727fb7a94 Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Fri, 16 Dec 2016 12:46:57 -0500
Subject: [PATCH] Style fix: missing semicolon.

---
 themes/bootstrap3/js/common.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/themes/bootstrap3/js/common.js b/themes/bootstrap3/js/common.js
index fcd3fe6fb54..043b0be5e9d 100644
--- a/themes/bootstrap3/js/common.js
+++ b/themes/bootstrap3/js/common.js
@@ -351,7 +351,7 @@ $(document).ready(function commonDocReady() {
 
   // Checkbox select all
   $('.checkbox-select-all').change(function selectAllCheckboxes() {
-    var $form = $(this).closest('form')
+    var $form = $(this).closest('form');
     $form.find('.checkbox-select-item').prop('checked', this.checked);
     $('[form="' + $form.attr('id') + '"]').prop('checked', this.checked);
   });
-- 
GitLab