X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=phpfspot.git;a=blobdiff_plain;f=phpfspot.js;h=859b198147cb562fb87e8cad795224741d838428;hp=b2aebd7e9d74427a4fe05280d99a6d9ec45a92ea;hb=b7f5e6235288878a71e7df1bf586e9352096f74a;hpb=c48fe9f8904f3e82b484bba7b62c79a58a9dc5b4 diff --git a/phpfspot.js b/phpfspot.js index b2aebd7..859b198 100644 --- a/phpfspot.js +++ b/phpfspot.js @@ -1,13 +1,13 @@ function showImage(id) { - content = document.getElementById("content"); - content.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=showphoto&id=' + id)); + var image_div = document.getElementById("content"); + image_div.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=showphoto&id=' + id)); } function showCredits() { - content = document.getElementById("content"); - content.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=showcredits')); + var credits = document.getElementById("content"); + credits.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=showcredits')); } function Tags(mode, id) @@ -37,20 +37,25 @@ function Tags(mode, id) function refreshAvailableTags() { // update available tags - content = document.getElementById("available_tags"); - content.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=show_available_tags')); + var avail_tags = document.getElementById('available_tags'); + avail_tags.innerHTML = "Loading..."; + avail_tags.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=show_available_tags')); } function refreshSelectedTags() { // update selected tags - content = document.getElementById("selected_tags"); - content.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=show_selected_tags')); + var selected_tags = document.getElementById("selected_tags"); + selected_tags.innerHTML = "Loading..."; + selected_tags.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=show_selected_tags')); } -function showPhotoIndex() +function showPhotoIndex(begin_with) { - HTML_AJAX.replace(document.getElementById("content"), encodeURI('rpc.php?action=show_photo_index')); + if(begin_with == undefined) + HTML_AJAX.replace(document.getElementById("content"), encodeURI('rpc.php?action=show_photo_index')); + else + HTML_AJAX.replace(document.getElementById("content"), encodeURI('rpc.php?action=show_photo_index&begin_with=' + begin_with)); } function showBubbleDetails(object, id, direction) @@ -92,15 +97,13 @@ function setCheckedValue(condition, value) { } } -function startSearch(searchfor) +function startTagSearch(searchfor) { - HTML_AJAX.grab(encodeURI('rpc.php?action=search&for=' + searchfor)); - -/ Tags('reset', 0); - + HTML_AJAX.grab(encodeURI('rpc.php?action=tag_search&for=' + searchfor)); refreshAvailableTags(); refreshSelectedTags(); showPhotoIndex(); + } function clearSearch()