aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/router.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/js/router.js')
-rw-r--r--src/js/router.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/js/router.js b/src/js/router.js
index 3f5a9b2..118955e 100644
--- a/src/js/router.js
+++ b/src/js/router.js
@@ -36,9 +36,9 @@
}
},
- back: function() {
+ back: function(e) {
if (this.currentView && this.currentView.prev) {
- this.currentView.onClickButtonPrev();
+ this.currentView.onClickButtonPrev(e);
}
},