This commit is contained in:
BoHung Chiu 2023-09-28 22:47:54 +08:00
parent b3dfe4981a
commit 17d990c499
1 changed files with 2 additions and 1 deletions

View File

@ -120,7 +120,8 @@ window.GalleryTheater = function() {
// handler to show theater
$("div[data-list=images] a").filter(":not(.preview)").off('click').on("click", function() {
createTheater($(this).attr("href"));
var id = link.split("#")[1];
createTheater("/xhr/galleries/theater/" + id);
return false;
})