From 8479aa5719dd7041fb6c20f5c881063e07a90dfa Mon Sep 17 00:00:00 2001
From: Chris Hallberg <crhallberg@gmail.com>
Date: Mon, 14 Mar 2016 14:36:30 -0400
Subject: [PATCH] Bad escapement, says Jenkins. Unclosed string, says Jenkins.

---
 themes/bootstrap3/js/lightbox.js | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/themes/bootstrap3/js/lightbox.js b/themes/bootstrap3/js/lightbox.js
index b8e6edae3fe..5ada394b19e 100644
--- a/themes/bootstrap3/js/lightbox.js
+++ b/themes/bootstrap3/js/lightbox.js
@@ -16,8 +16,7 @@ VuFind.lightbox = (function() {
     if ('undefined' == typeof type) {
       type = 'info';
     }
-    _html('<div class="alert alert-'+type+'">'+message+'</div>\
-    <button class="btn btn-default" data-dismiss="modal">' + VuFind.translate('close') + '</button>');
+    _html('<div class="alert alert-'+type+'">'+message+'</div><button class="btn btn-default" data-dismiss="modal">' + VuFind.translate('close') + '</button>');
     _modal.modal('show');
   };
   var flashMessage = function(message, type) {
-- 
GitLab