From 030e2ce2dfa6a4a1b73845f4355ba3fd6c1ec564 Mon Sep 17 00:00:00 2001 From: Justin Richer Date: Tue, 13 Nov 2012 15:06:09 -0500 Subject: [PATCH] fixed link scanner --- openid-connect-server/src/main/webapp/resources/js/admin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openid-connect-server/src/main/webapp/resources/js/admin.js b/openid-connect-server/src/main/webapp/resources/js/admin.js index 7fd58e26f..93b0dec5b 100644 --- a/openid-connect-server/src/main/webapp/resources/js/admin.js +++ b/openid-connect-server/src/main/webapp/resources/js/admin.js @@ -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}); });