Skip to content

Commit

Permalink
Merge pull request #165 from shaunpud/master
Browse files Browse the repository at this point in the history
Fixed auto-refresh on summary page
  • Loading branch information
pentium10 authored Dec 4, 2019
2 parents 8de718a + 4cc195d commit 9a4db88
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion public/js/customer.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,12 @@ $(document).ready(
}

if ($.cookie('isEnabledAutoRefreshLoad')) {
$('#autoRefresh').click();
if ($('#autoRefresh').length) {
$('#autoRefresh').click();
}
if ($('#autoRefreshSummary').length) {
$('#autoRefreshSummary').click();
}
}
}

Expand Down

0 comments on commit 9a4db88

Please sign in to comment.