Frio - fix missing modal for editing albums

This commit is contained in:
rabuzarus 2018-09-05 18:24:04 +02:00
parent 85fed927c3
commit 7c5e964581
3 changed files with 21 additions and 13 deletions

View file

@ -15,7 +15,14 @@ $(document).ready(function() {
}).trigger('change');
// Click event listener for the album edit link/button.
$("body").on('click', '#album-edit-link', function() {
var modalUrl = $(this).attr("data-modal-url");
if (typeof modalUrl !== "undefined") {
addToModal(modalUrl, 'photo-album-edit-wrapper');
}
});
});
$(window).load(function() {