Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
make route regex accept all characters
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreedm committed Sep 4, 2013
1 parent c435d39 commit ebedbf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flatiron-director/flatiron-director.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
Polymer('flatiron-director', {
autoHash: false,
created: function() {
this.router.on(/(\w*)/, function(route) {
this.router.on(/(.*)/, function(route) {
this.route = route;
}.bind(this));
var initialRoute = this.router.getRoute(0);
Expand Down

0 comments on commit ebedbf6

Please sign in to comment.