summaryrefslogtreecommitdiff
path: root/public/js/vendor/view/router.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/js/vendor/view/router.js')
-rw-r--r--public/js/vendor/view/router.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/public/js/vendor/view/router.js b/public/js/vendor/view/router.js
index 28905b2..ac2b5d4 100644
--- a/public/js/vendor/view/router.js
+++ b/public/js/vendor/view/router.js
@@ -15,7 +15,7 @@ var Router = View.extend({
}
if (pathname in routes) {
- this[this.routes[pathname]](null)
+ this[this.routes[pathname]]()
return
}
@@ -27,27 +27,27 @@ var Router = View.extend({
var routePath = route.split("/")
if (routePath[1] == path[1]) {
if (routePath[2] && routePath[2].indexOf(":") !== -1 && path[2] && (path[3] === routePath[3]) ) {
- this[this.routes[route]](null, path[2])
+ this[this.routes[route]](path[2])
return
}
else if (routePath[2] == path[2]) {
if (routePath[3] && path[3]) {
if (routePath[3].indexOf(":") !== -1) {
- this[this.routes[route]](null, path[3])
+ this[this.routes[route]](path[3])
return
}
else if (routePath[3] == path[3]) {
- this[this.routes[route]](null)
+ this[this.routes[route]]()
return
}
}
else if (! routePath[3] && ! path[3]) {
- this[this.routes[route]](null)
+ this[this.routes[route]]()
return
}
}
else if (! routePath[2] && (! path[2].length || ! path[2])) {
- this[this.routes[route]](null)
+ this[this.routes[route]]()
return
}
}