projects
/
phpfspot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c26d80a
)
issue17, add a "Loading" text when tags-list getting loaded
author
Andreas Unterkircher
<unki@netshadow.at>
Mon, 25 Jun 2007 18:30:30 +0000
(18:30 +0000)
committer
Andreas Unterkircher
<unki@netshadow.at>
Mon, 25 Jun 2007 18:30:30 +0000
(18:30 +0000)
git-svn-id: file:///var/lib/svn/phpfspot/trunk@131
fa6a889d
-dae6-447d-9e79-
4ba9a3039384
phpfspot.js
patch
|
blob
|
history
diff --git
a/phpfspot.js
b/phpfspot.js
index 92c08b7ecd02e5ce9d820118b984357a54eb41fb..859b198147cb562fb87e8cad795224741d838428 100644
(file)
--- 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'));
}