aboutsummaryrefslogtreecommitdiffstats
path: root/js/main.js
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-12-16 15:49:22 -0800
committerfriendica <info@friendica.com>2012-12-16 15:49:22 -0800
commitfa8b4e98b727a2af58fea55e93546089fe9bea2b (patch)
tree03588905060894dd59077464a1552b3157738133 /js/main.js
parent5d008a6923b631acf3bad7d82be680cc668475b6 (diff)
downloadvolse-hubzilla-fa8b4e98b727a2af58fea55e93546089fe9bea2b.tar.gz
volse-hubzilla-fa8b4e98b727a2af58fea55e93546089fe9bea2b.tar.bz2
volse-hubzilla-fa8b4e98b727a2af58fea55e93546089fe9bea2b.zip
some cleanup - Thomas we can put the radius/shadow stuff back later for the hipster kids, it's quite distracting at the moment and makes it hard to get serious work done. Hmmm. Wonder if we could make radius/shadow configurable like colours.... and maybe even screen transparency.... that could be interesting.
Diffstat (limited to 'js/main.js')
-rw-r--r--js/main.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/main.js b/js/main.js
index e9ff2fc88..144db15e6 100644
--- a/js/main.js
+++ b/js/main.js
@@ -462,7 +462,7 @@ function updateConvItems(mode,data) {
}
if(page_load)
- $("#profile-jot-text-loading").show();
+ $("#page-spinner").show();
$.get(update_url,function(data) {
var update_mode = ((page_load) ? 'replace' : 'update');
@@ -472,7 +472,7 @@ function updateConvItems(mode,data) {
scroll_next = false;
in_progress = false;
updateConvItems(update_mode,data);
- $("#profile-jot-text-loading").hide();
+ $("#page-spinner").hide();
});