diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2007-06-25 18:30:30 +0000 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2007-06-25 18:30:30 +0000 |
commit | 938dd660b2d3157380e62a3e73b3c8b0654a97ce (patch) | |
tree | ab9fc071184075e72810f1ae3d549316bdc83b79 | |
parent | c26d80a67fa286d3b4dba0422fdc5a784741f1f1 (diff) |
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
-rw-r--r-- | phpfspot.js | 2 |
1 files changed, 2 insertions, 0 deletions
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')); } |