Skip to content

Commit

Permalink
Checkstyles Bootstrap js.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Hallberg committed Feb 20, 2014
1 parent 3c112d5 commit 8a1c577
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions themes/bootstrap/js/lightbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ function registerModalEvents(modal) {
// Highlight which submit button clicked
$(modal).find("form input[type=submit]").click(function() {
// Abort requests triggered by the lightbox
if(modalXHR) { modalXHR.abort() }
if(modalXHR) { modalXHR.abort(); }
$('#modal .icon-spinner').remove();
// Add useful information
$(this).attr("clicked", "true");
Expand Down Expand Up @@ -440,7 +440,7 @@ $(document).ready(function() {
return false;
});
addLightboxFormHandler('saveRecord', function(evt) {
ajaxSubmit($(evt.target), function(){lightboxConfirm(vufindString['bulk_save_success'])});
ajaxSubmit($(evt.target), function(){lightboxConfirm(vufindString['bulk_save_success']);});
return false;
});

Expand Down

0 comments on commit 8a1c577

Please sign in to comment.