diff options
Diffstat (limited to 'templates/apps/stats/user.html')
-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> |