summary: fix timeout issues loading summary page without styling
This commit is contained in:
parent
c6963cf66b
commit
337f4d617c
1 changed files with 6 additions and 1 deletions
|
|
@ -94,8 +94,13 @@
|
|||
</table>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(document).pjax('#shortlog_data .pager_link','#shortlog_data', {timeout: 2000, scrollTo: false, push: false});
|
||||
$(document).pjax('#shortlog_data .pager_link','#shortlog_data', {timeout: 5000, scrollTo: false, push: false});
|
||||
$(document).on('pjax:success', function(){ timeagoActivate(); });
|
||||
$(document).on('pjax:timeout', function(event) {
|
||||
// Prevent default timeout redirection behavior
|
||||
event.preventDefault()
|
||||
})
|
||||
|
||||
</script>
|
||||
|
||||
<div class="pagination-wh pagination-left">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue