let new tab shortcuts work normally for links

enables ctrl-clicking, middle-clicking, etc. for anchors when using pathname routing
This commit is contained in:
Pepe Bawagan 2014-04-30 19:28:51 +08:00
parent 22deb93d04
commit 25237f1425

View file

@ -314,6 +314,7 @@ Mithril = m = new function app(window) {
}
}
function routeUnobtrusive(e) {
if (e.ctrlKey || e.metaKey || e.which == 2) return
e.preventDefault()
m.route(e.currentTarget.getAttribute("href"))
}