X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=phpfspot.git;a=blobdiff_plain;f=phpfspot.js;h=c34f31ae781649a3276988fb45e622c5c2b5458f;hp=4f8fd5233d1a29517d3aa4556882a776a8d96da8;hb=ae3e56961cdc914f315c54b1e2918aa35b638221;hpb=193a2982417fb5b004c47cc96dcd112e1b07e47d diff --git a/phpfspot.js b/phpfspot.js index 4f8fd52..c34f31a 100644 --- a/phpfspot.js +++ b/phpfspot.js @@ -4,6 +4,12 @@ function showImage(id) content.innerHTML = HTML_AJAX.grab('rpc.php?action=showphoto&id=' + id); } +function showCredits() +{ + content = document.getElementById("content"); + content.innerHTML = HTML_AJAX.grab('rpc.php?action=showcredits'); +} + function Tags(mode, id) { if(mode == "add") { @@ -20,6 +26,7 @@ function Tags(mode, id) refreshAvailableTags(); refreshSelectedTags(); + refreshPhotoIndex(); } @@ -36,3 +43,23 @@ function refreshSelectedTags() content = document.getElementById("selected_tags"); content.innerHTML = HTML_AJAX.grab('rpc.php?action=show_selected_tags'); } + +function showPhotoIndex() +{ + HTML_AJAX.replace(document.getElementById("content"), 'rpc.php?action=show_photo_index'); + +} + +function showBubbleDetails(object, id, direction) +{ + HTML_AJAX.replace(object, 'rpc.php?action=showbubbledetails&id=' + id + '&direction=" + direction'); +} + +// if photo index is currently shown, refresh it +function refreshPhotoIndex() +{ + if(document.getElementById("matrix") != undefined) { + showPhotoIndex(); + } +} +