fixed jquery.on regex to be less aggressive

pull/477/head
Justin Richer 2013-08-19 17:20:29 -04:00
parent 941e9544e2
commit 48a9202f79
1 changed files with 1 additions and 1 deletions

View File

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