issue41, remove any trace of the javascript bubble
[phpfspot.git] / phpfspot.js
index 22840b7990630a18463ea78cb95327a3ede8ce50..be15455a107c61e0aadce75ca7b21e0cdd33fd6c 100644 (file)
@@ -66,11 +66,6 @@ function showPhotoIndex(begin_with)
       HTML_AJAX.replace(document.getElementById("content"), encodeURI('rpc.php?action=show_photo_index&begin_with=' + begin_with));
 }
 
-function showBubbleDetails(object, id, direction)
-{
-   HTML_AJAX.replace(object, encodeURI('rpc.php?action=showbubbledetails&id=' + id + '&direction=" + direction'));
-}
-
 // if photo index is currently shown, refresh it
 function refreshPhotoIndex()
 {
@@ -115,6 +110,13 @@ function startTagSearch(searchfor)
 
 }
 
+function setViewMode(mode)
+{
+   var exprt = document.getElementById('output');
+   exprt.innerHTML = "Loading...";
+   exprt.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=get_export&mode=' + mode));
+}
+
 function clearSearch()
 {
    document.getElementsByName('searchfor')[0].value = '';
@@ -124,10 +126,40 @@ function init_phpfspot()
 {
    refreshAvailableTags();
 
-   if(refreshSelectedTags()) {
-      showPhotoIndex();
+   if(photo = getPhotoToShow()) {
+      showImage(photo)
+      refreshSelectedTags();
+   }
+   else {
+      if(refreshSelectedTags()) {
+         showPhotoIndex();
+      }
    }
 }
 
+function setBackGrdColor(item, color)
+{
+   if(color == 'mouseover')
+      item.style.backgroundColor='#c6e9ff';
+   if(color == 'mouseout')
+      item.style.backgroundColor='#eeeeee';
+   if(color == 'mouseclick')
+      item.style.backgroundColor='#93A8CA';
+}
+
+function getPhotoToShow()
+{
+   // update selected tags
+   var photo_to_show = HTML_AJAX.grab(encodeURI('rpc.php?action=get_photo_to_show'));
+
+   // if no image needs to be shown, return false from here
+   if(photo_to_show == "")
+      return false;
+   
+   return photo_to_show;
+}
+
+
+
 var startup = 1;