Skip to content
Snippets Groups Projects
Unverified Commit a54d9c5a authored by weaver299's avatar weaver299 Committed by GitHub
Browse files

Merge pull request #245 from ASCWebServices/canini

fixing gallery popup title bug
parents d3c1e1d2 d145ba40
No related branches found
No related tags found
No related merge requests found
...@@ -414,7 +414,7 @@ var Lightbox = (function ($) { ...@@ -414,7 +414,7 @@ var Lightbox = (function ($) {
} else this._$modalHeader.css('display', 'none'); } else this._$modalHeader.css('display', 'none');
this._footerIsShown = false; this._footerIsShown = false;
if (caption) { if (caption || title) {
this._footerIsShown = true; this._footerIsShown = true;
this._$modalFooter.css('display', '').html('<h4 class="modal-title">' + title + '</h4>' + caption); this._$modalFooter.css('display', '').html('<h4 class="modal-title">' + title + '</h4>' + caption);
} else this._$modalFooter.css('display', 'none'); } else this._$modalFooter.css('display', 'none');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment