diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-11-27 13:32:20 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-11-27 13:32:20 +0100 |
commit | ee153f64d459406f429a8951e95ec0d50fa66956 (patch) | |
tree | 93131dc3fd264d0712dcc96b782a19e81a4b1449 /view/tpl/event_head.tpl | |
parent | fa5a382c4b4f8cde8091c4b067a6d9ec9f47a45c (diff) | |
download | volse-hubzilla-ee153f64d459406f429a8951e95ec0d50fa66956.tar.gz volse-hubzilla-ee153f64d459406f429a8951e95ec0d50fa66956.tar.bz2 volse-hubzilla-ee153f64d459406f429a8951e95ec0d50fa66956.zip |
add spinner to events
Diffstat (limited to 'view/tpl/event_head.tpl')
-rwxr-xr-x | view/tpl/event_head.tpl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/view/tpl/event_head.tpl b/view/tpl/event_head.tpl index 6a38057fd..745cdc0e6 100755 --- a/view/tpl/event_head.tpl +++ b/view/tpl/event_head.tpl @@ -55,7 +55,11 @@ showEvent(calEvent.id); }, loading: function(isLoading, view) { + $('#events-spinner').spin('tiny'); + $('#events-spinner > i').css('color', 'transparent'); if(!isLoading) { + $('#events-spinner').spin(false); + $('#events-spinner > i').css('color', 'unset'); $('td.fc-day').dblclick(function() { openMenu('form'); //window.location.href='/events/new?start='+$(this).data('date'); |