summaryrefslogtreecommitdiff
path: root/assets/js/pjax.js
diff options
context:
space:
mode:
authormayx <mayx@outlook.com>2026-06-01 01:09:42 +0000
committermayx <mayx@outlook.com>2026-06-01 01:09:42 +0000
commit5a4baf5f4b119d1d71aa2b16958f39bf27663a41 (patch)
treebd92b7269b2747e337852f467c6c5413e2f28196 /assets/js/pjax.js
parent71d493c2a8126c04267526081663272d623598d3 (diff)
Update 4 filesAR-Backup-2026.06.01
- /_data/ai-cache.json - /_data/other_repo_list.csv - /assets/js/pjax.js - /_layouts/post.html
Diffstat (limited to 'assets/js/pjax.js')
-rw-r--r--assets/js/pjax.js13
1 files changed, 1 insertions, 12 deletions
diff --git a/assets/js/pjax.js b/assets/js/pjax.js
index c3f5883..a9484e6 100644
--- a/assets/js/pjax.js
+++ b/assets/js/pjax.js
@@ -10,19 +10,12 @@
var PJAX_OPTS = {
container: CONTAINER,
fragment: CONTAINER,
- timeout: 8000,
+ timeout: 5000,
scrollTo: false
};
// ========== 各组件重初始化 ==========
- /** AI 摘要(post.html 内联脚本,pjax 后由 executeScripts 触发) */
- function reinitAISummary() {
- if (typeof ai_gen === 'function' && $('#ai-output').length) {
- try { ai_gen(); } catch (e) { /* ignore */ }
- }
- }
-
/** Google Analytics 页面浏览事件 */
function trackPageView() {
if (typeof gtag === 'function') {
@@ -114,7 +107,6 @@
initVisitors();
initCopyButtons();
highlightKeyword();
- reinitAISummary();
reinitLive2d();
trackPageView();
scrollToAnchor();
@@ -134,9 +126,6 @@
$('body').addClass('pjax-loading');
});
$(document).on('pjax:complete', doPjaxComplete);
- $(document).on('pjax:error', function (xhr, textStatus, error) {
- console.warn('[pjax] error, fallback:', error);
- });
$(document).on('pjax:end', function (event, xhr, options) {
var $container = $(options.container || PJAX_OPTS.container);