diff options
Diffstat (limited to 'src/content/histories.js')
-rw-r--r-- | src/content/histories.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/content/histories.js b/src/content/histories.js index 2e34dc6..9c5665d 100644 --- a/src/content/histories.js +++ b/src/content/histories.js @@ -1,8 +1,8 @@ const prev = (win) => { - win.history.back() + win.history.back(); }; const next = (win) => { - win.history.forward() + win.history.forward(); }; export { prev, next }; |