fixed link scanner

pull/263/head
Justin Richer 2012-11-13 15:06:09 -05:00
parent 706858c41f
commit 030e2ce2df
1 changed files with 1 additions and 1 deletions

View File

@ -683,7 +683,7 @@
app = new AppRouter();
// grab all hashed URLs and send them through the app router instead
$('a[href*="#"').on('click', function(event) {
$('a[href*="#"]').on('click', function(event) {
event.preventDefault();
app.navigate(this.hash.slice(1), {trigger: true});
});