From 48a9202f792571da80996d116321f30684eebd61 Mon Sep 17 00:00:00 2001 From: Justin Richer Date: Mon, 19 Aug 2013 17:20:29 -0400 Subject: [PATCH] fixed jquery.on regex to be less aggressive --- 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 bb7d0402e..93fe021bb 100644 --- a/openid-connect-server/src/main/webapp/resources/js/admin.js +++ b/openid-connect-server/src/main/webapp/resources/js/admin.js @@ -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}); });