From 1e53395491779912ece5820e7d3f9b9cd46d809e Mon Sep 17 00:00:00 2001 From: Chris Hallberg <crhallberg@gmail.com> Date: Mon, 23 Jun 2014 12:26:27 -0400 Subject: [PATCH] Lightbox header cancelling now more flexible: handles h2 headers. --- themes/bootstrap/js/common.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/themes/bootstrap/js/common.js b/themes/bootstrap/js/common.js index af668b82e29..f0fb34052ab 100644 --- a/themes/bootstrap/js/common.js +++ b/themes/bootstrap/js/common.js @@ -107,7 +107,11 @@ function registerLightboxEvents() { * if it matches the title bar of the lightbox */ var header = $('#modal .modal-header h3').html(); - $('#modal .modal-body .lead').each(function(i,op) { + var contentHeader = $('#modal .modal-body .lead'); + if(contentHeader.length == 0) { + contentHeader = $('#modal .modal-body h2'); + } + contentHeader.each(function(i,op) { if (op.innerHTML == header) { $(op).hide(); } -- GitLab