summaryrefslogtreecommitdiffstats
path: root/phpfspot.js
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2007-06-08 15:13:12 +0000
committerAndreas Unterkircher <unki@netshadow.at>2007-06-08 15:13:12 +0000
commit2ce4888da55447df8e58c241020bbfdae72cbd56 (patch)
treeebc4c967d399d34c500a7a92b6202a8370b1c7e3 /phpfspot.js
parent8de82f0fbbe0b14048825ae14cbc7210d8de7d64 (diff)
if the photo index is displayed and the tag selection
get's changed, refresh it git-svn-id: file:///var/lib/svn/phpfspot/trunk@52 fa6a889d-dae6-447d-9e79-4ba9a3039384
Diffstat (limited to 'phpfspot.js')
-rw-r--r--phpfspot.js11
1 files changed, 9 insertions, 2 deletions
diff --git a/phpfspot.js b/phpfspot.js
index 99da2ce..c34f31a 100644
--- a/phpfspot.js
+++ b/phpfspot.js
@@ -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();
+ }
+}
+