Skip to content
This repository has been archived by the owner on Dec 5, 2023. It is now read-only.

Commit

Permalink
Sometimes preserving case is important.
Browse files Browse the repository at this point in the history
  • Loading branch information
LeeMallabone committed Mar 6, 2013
1 parent 1179567 commit 0b5f426
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/lib/router.js
Expand Up @@ -300,7 +300,7 @@ _.extend(History.prototype, /*Events,*/ {
var matched = _.any(this.handlers, function (handler) {
if (handler.route.test(fragment.toLowerCase())) {
that._currentUrl = fragment;
(handler.enter || handler.callback)(fragment.toLowerCase());
(handler.enter || handler.callback)(fragment);
return true;
}
});
Expand Down

0 comments on commit 0b5f426

Please sign in to comment.