From 8c59d6b80f3f68846719b92d4360bedcba2781cb Mon Sep 17 00:00:00 2001 From: harokki Date: Wed, 8 Jan 2025 15:06:29 +0900 Subject: [PATCH] update window.history.back() to autify.back() --- content/en/snippets/others/back_forward_reload.md | 2 +- content/ja/snippets/others/back_forward_reload.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/snippets/others/back_forward_reload.md b/content/en/snippets/others/back_forward_reload.md index ae24bd3..b276ac0 100644 --- a/content/en/snippets/others/back_forward_reload.md +++ b/content/en/snippets/others/back_forward_reload.md @@ -8,7 +8,7 @@ Simulate back, forward, reload on a browser. ```js /* Back */ -window.history.back(); +autify.back(); /* Forward */ window.history.forward(); diff --git a/content/ja/snippets/others/back_forward_reload.md b/content/ja/snippets/others/back_forward_reload.md index a66bea7..1865c1e 100644 --- a/content/ja/snippets/others/back_forward_reload.md +++ b/content/ja/snippets/others/back_forward_reload.md @@ -8,7 +8,7 @@ ie_support: true ```js /* 戻る */ -window.history.back(); +autify.back(); /* 進む */ window.history.forward();