diff options
-rw-r--r-- | templates/apps/stats/user.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/apps/stats/user.html b/templates/apps/stats/user.html index dc51ecd..48ad4ed 100644 --- a/templates/apps/stats/user.html +++ b/templates/apps/stats/user.html @@ -17,9 +17,9 @@ $.ajax({ } }); $("#graph").ajaxStart(function() { - this.spin("large") + $(this).spin("large") }).ajaxStop(function() { - this.spin(false) + $(this).spin(false) }); {% endblock %} {% block content %} |