parent
ae317113e7
commit
aeb0e0f96d
5 changed files with 17 additions and 17 deletions
@ -1,8 +0,0 @@ |
|||||||
const prev = (win) => { |
|
||||||
win.history.back(); |
|
||||||
}; |
|
||||||
const next = (win) => { |
|
||||||
win.history.forward(); |
|
||||||
}; |
|
||||||
|
|
||||||
export { prev, next }; |
|
@ -0,0 +1,8 @@ |
|||||||
|
const historyPrev = (win) => { |
||||||
|
win.history.back(); |
||||||
|
}; |
||||||
|
const historyNext = (win) => { |
||||||
|
win.history.forward(); |
||||||
|
}; |
||||||
|
|
||||||
|
export { historyPrev, historyNext }; |
Reference in new issue