lightbox: Fix focus state when exiting lightbox.

Previously, exiting the lightbox and then hitting enter reopened the
lightbox with a null image.

Fixes #1982.
This commit is contained in:
Brock Whittaker 2016-10-25 14:26:28 -07:00 committed by Tim Abbott
parent 0f7c8c6d34
commit bb23d6ed60
1 changed files with 1 additions and 0 deletions

View File

@ -313,6 +313,7 @@ exports.lightbox_photo = function (image, user) {
exports.exit_lightbox_photo = function (image) {
$("#overlay").removeClass("show");
$(".player-container iframe").remove();
document.activeElement.blur();
};
exports.youtube_video = function (id) {