aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/router.js
diff options
context:
space:
mode:
authorJedidiah Broadbent <hello@jedidiah.eu>2013-08-02 14:59:34 +0100
committerJedidiah Broadbent <hello@jedidiah.eu>2013-08-02 14:59:34 +0100
commit870a38f83f0c57885acacd4b6894871407c190e1 (patch)
treefe3d99eec16793b45c12d053cdf2940c0cca0fd4 /src/js/router.js
parent701ebe1378ce0be057510700eab4c5e6ee633205 (diff)
parent5ac0e83e5cc2cca5dc268513f891e330143c0417 (diff)
Merge branch 'master' of ssh://git.mysociety.org/data/git/public/fixmystreet-mobile
Conflicts: src/css/fms.css
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);
}
},