diff options
author | Paolo T <tuscanhobbit@users.noreply.github.com> | 2014-06-25 11:57:42 +0200 |
---|---|---|
committer | Paolo T <tuscanhobbit@users.noreply.github.com> | 2014-06-25 11:57:42 +0200 |
commit | 695afefd4b006a180fce1df2debb575cbdd0c0ea (patch) | |
tree | 1888ea4040ffb065305c84ee8718d513ea74c549 /view/js/main.js | |
parent | b8e8adcd514482aca98b1ccded9351db02421e8f (diff) | |
parent | 423372c9642c10ab448e6209d7b3008993e5aa9d (diff) | |
download | volse-hubzilla-695afefd4b006a180fce1df2debb575cbdd0c0ea.tar.gz volse-hubzilla-695afefd4b006a180fce1df2debb575cbdd0c0ea.tar.bz2 volse-hubzilla-695afefd4b006a180fce1df2debb575cbdd0c0ea.zip |
Merge pull request #1 from friendica/master
Updated fork
Diffstat (limited to 'view/js/main.js')
-rw-r--r-- | view/js/main.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/view/js/main.js b/view/js/main.js index a7745cbaf..26cf12b47 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -352,18 +352,18 @@ if(data.events == 0) { data.events = ''; $('.events-update').removeClass('show') } else { $('.events-update').addClass('show') } $('.events-update').html(data.events); - if(data.events_today == 0) { data.events_today = ''; $('.events-today-update').removeClass('show') } else { $('.events-today-update').addClass('show') } + if(data.events_today == 0) { data.events_today = ''; $('.events-today-update').removeClass('show') } else { $('.events-today-update').addClass('show'); $('.events-update').html(data.events + '*'); } $('.events-today-update').html(data.events_today); - if(data.birthdays == 0) { data.birthdays = ''; $('.birthdays-update').removeClass('show') } else { $('.birthdays-update').addClass('show') } + if(data.birthdays == 0) { data.birthdays = ''; $('.birthdays-update').removeClass('show') } else { $('.birthdays-update').addClass('show'); } $('.birthdays-update').html(data.birthdays); - if(data.birthdays_today == 0) { data.birthdays_today = ''; $('.birthdays-today-update').removeClass('show') } else { $('.birthdays-today-update').addClass('show') } + if(data.birthdays_today == 0) { data.birthdays_today = ''; $('.birthdays-today-update').removeClass('show') } else { $('.birthdays-today-update').addClass('show'); $('.birthdays-update').html(data.birthdays + '*'); } $('.birthdays-today-update').html(data.birthdays_today); if(data.all_events == 0) { data.all_events = ''; $('.all_events-update').removeClass('show') } else { $('.all_events-update').addClass('show') } $('.all_events-update').html(data.all_events); - if(data.all_events_today == 0) { data.all_events_today = ''; $('.all_events-today-update').removeClass('show') } else { $('.all_events-today-update').addClass('show') } + if(data.all_events_today == 0) { data.all_events_today = ''; $('.all_events-today-update').removeClass('show') } else { $('.all_events-today-update').addClass('show'); $('.all_events-update').html(data.all_events + '*'); } $('.all_events-today-update').html(data.all_events_today); $.jGrowl.defaults.closerTemplate = '<div>[ ' + aStr['closeAll'] + ']</div>'; |