Replace window reload with jquery ajax load

This commit is contained in:
gnomus 2017-12-13 14:43:17 +01:00 committed by GitHub
parent 5278be1f0f
commit c3d22ad517
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -24,8 +24,8 @@ function public_dashboard_view($stats, $free_shifts)
stats(_('Angels needed for nightshifts'), $stats['needed-night']), stats(_('Angels needed for nightshifts'), $stats['needed-night']),
stats(_('Angels currently working'), $stats['angels-working'], 'default'), stats(_('Angels currently working'), $stats['angels-working'], 'default'),
stats(_('Hours to be worked'), $stats['hours-to-work'], 'default'), stats(_('Hours to be worked'), $stats['hours-to-work'], 'default'),
'<script>$(function(){setTimeout(function(){window.location.reload();}, 60000)})</script>' '<script>$(function(){setTimeout(function(){$(\'#statistics\').load(window.location.href + \' #statistics\');}, 60000)})</script>'
]), ], 'statistics'),
$needed_angels $needed_angels
]); ]);
} }
@ -75,4 +75,4 @@ function public_dashborad_shift_render($shift)
]) ])
]); ]);
} }
?> ?>