if the photo index is displayed and the tag selection
authorAndreas Unterkircher <unki@netshadow.at>
Fri, 8 Jun 2007 15:13:12 +0000 (15:13 +0000)
committerAndreas Unterkircher <unki@netshadow.at>
Fri, 8 Jun 2007 15:13:12 +0000 (15:13 +0000)
get's changed, refresh it

git-svn-id: file:///var/lib/svn/phpfspot/trunk@52 fa6a889d-dae6-447d-9e79-4ba9a3039384

phpfspot.js

index 99da2ce29099e7319b8d836f8c1fdecceede83cd..c34f31ae781649a3276988fb45e622c5c2b5458f 100644 (file)
@@ -26,6 +26,7 @@ function Tags(mode, id)
    
    refreshAvailableTags();
    refreshSelectedTags();
+   refreshPhotoIndex();
 
 }
 
@@ -47,8 +48,6 @@ function showPhotoIndex()
 {
    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)
@@ -56,3 +55,11 @@ 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();
+   }
+}
+