From: Andreas Unterkircher Date: Mon, 25 Jun 2007 18:30:30 +0000 (+0000) Subject: issue17, add a "Loading" text when tags-list getting loaded X-Git-Tag: phpfspot-1.2~204 X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=938dd660b2d3157380e62a3e73b3c8b0654a97ce;p=phpfspot.git issue17, add a "Loading" text when tags-list getting loaded git-svn-id: file:///var/lib/svn/phpfspot/trunk@131 fa6a889d-dae6-447d-9e79-4ba9a3039384 --- diff --git a/phpfspot.js b/phpfspot.js index 92c08b7..859b198 100644 --- a/phpfspot.js +++ b/phpfspot.js @@ -38,6 +38,7 @@ function refreshAvailableTags() { // update 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')); } @@ -45,6 +46,7 @@ function refreshSelectedTags() { // update 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')); }