diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-11-27 14:00:37 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-11-27 14:00:37 +0100 |
commit | e569f5d6ebc44b8bd6011e8ec2db757188b51c48 (patch) | |
tree | b35eb830e52aa3268ab2a2bf036dbec392d8ef5a /view | |
parent | 61a5e81bc62d8517a1c7a86249c0a1e9a42fe1d8 (diff) | |
download | volse-hubzilla-e569f5d6ebc44b8bd6011e8ec2db757188b51c48.tar.gz volse-hubzilla-e569f5d6ebc44b8bd6011e8ec2db757188b51c48.tar.bz2 volse-hubzilla-e569f5d6ebc44b8bd6011e8ec2db757188b51c48.zip |
unset does not work in webkit browsers
Diffstat (limited to 'view')
-rwxr-xr-x | view/tpl/event_head.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/tpl/event_head.tpl b/view/tpl/event_head.tpl index 745cdc0e6..dc98d14b3 100755 --- a/view/tpl/event_head.tpl +++ b/view/tpl/event_head.tpl @@ -59,7 +59,7 @@ $('#events-spinner > i').css('color', 'transparent'); if(!isLoading) { $('#events-spinner').spin(false); - $('#events-spinner > i').css('color', 'unset'); + $('#events-spinner > i').css('color', ''); $('td.fc-day').dblclick(function() { openMenu('form'); //window.location.href='/events/new?start='+$(this).data('date'); |