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 6745835..c42a742 100644
--- a/src/js/router.js
+++ b/src/js/router.js
@@ -37,8 +37,8 @@
},
back: function(e) {
- if (this.currentView && this.currentView.prev) {
- this.currentView.onClickButtonPrev(e);
+ if (this.currentView && this.currentView.back) {
+ this.currentView.back(e);
}
},