diff options
author | Leif Johansson <leifj@sunet.se> | 2012-10-21 11:59:15 +0200 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2012-10-21 11:59:15 +0200 |
commit | 5d6e0f3d73deb9be46b569b280f976de6fbfba56 (patch) | |
tree | 1f00936dafc4cef04bbd3067b9866434416c8958 | |
parent | 1907bfa78a3f2364e0856507c78e5eb09a1692f1 (diff) |
spinner
-rw-r--r-- | templates/apps/stats/user.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/templates/apps/stats/user.html b/templates/apps/stats/user.html index 8b08c6c..dc51ecd 100644 --- a/templates/apps/stats/user.html +++ b/templates/apps/stats/user.html @@ -16,6 +16,11 @@ $.ajax({ $('#rooms').append(resp['rooms']); } }); +$("#graph").ajaxStart(function() { + this.spin("large") +}).ajaxStop(function() { + this.spin(false) +}); {% endblock %} {% block content %} <h1>Meeting statistics for {{username}}</h1> |