Merge branch 'tobscure-route-shift-key' into next

This commit is contained in:
Leo Horie 2015-12-21 09:33:04 -05:00
commit 5003c0ac23

View file

@ -993,8 +993,7 @@ var m = (function app(window, undefined) {
}
function routeUnobtrusive(e) {
e = e || event;
if (e.ctrlKey || e.metaKey || e.which === 2) return;
if (e.ctrlKey || e.metaKey || e.shiftKey || e.which === 2) return;
if (e.preventDefault) e.preventDefault();
else e.returnValue = false;