if the photo index is displayed and the tag selection
[phpfspot.git] / phpfspot.js
index c2fe0d6f41e8e546ebf3750985e68fd05d3a54e7..c34f31ae781649a3276988fb45e622c5c2b5458f 100644 (file)
@@ -4,6 +4,12 @@ function showImage(id)
    content.innerHTML = HTML_AJAX.grab('rpc.php?action=showphoto&id=' + 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") {
 function Tags(mode, id)
 {
    if(mode == "add") {
@@ -20,6 +26,7 @@ function Tags(mode, id)
    
    refreshAvailableTags();
    refreshSelectedTags();
    
    refreshAvailableTags();
    refreshSelectedTags();
+   refreshPhotoIndex();
 
 }
 
 
 }
 
@@ -41,6 +48,18 @@ function showPhotoIndex()
 {
    HTML_AJAX.replace(document.getElementById("content"), 'rpc.php?action=show_photo_index');
 
 {
    HTML_AJAX.replace(document.getElementById("content"), 'rpc.php?action=show_photo_index');
 
-//   content = document.getElementById("content");
-//   content.innerHTML = HTML_AJAX.grab('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();
+   }
+}
+