##// END OF EJS Templates
summary: fix timeout issues loading summary page without styling
marcink -
r3645:a7895869 default
parent child Browse files
Show More
@@ -94,8 +94,13 b''
94 94 </table>
95 95
96 96 <script type="text/javascript">
97 $(document).pjax('#shortlog_data .pager_link','#shortlog_data', {timeout: 2000, scrollTo: false, push: false});
97 $(document).pjax('#shortlog_data .pager_link','#shortlog_data', {timeout: 5000, scrollTo: false, push: false});
98 98 $(document).on('pjax:success', function(){ timeagoActivate(); });
99 $(document).on('pjax:timeout', function(event) {
100 // Prevent default timeout redirection behavior
101 event.preventDefault()
102 })
103
99 104 </script>
100 105
101 106 <div class="pagination-wh pagination-left">
General Comments 0
You need to be logged in to leave comments. Login now