From 597870132c0e54d3229367061d4db025d5339f94 Mon Sep 17 00:00:00 2001 From: Justin Richer Date: Sat, 8 Mar 2014 20:45:25 +0000 Subject: [PATCH] got rid of extraneous parentheses --- .../src/main/webapp/resources/js/admin.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/openid-connect-server-webapp/src/main/webapp/resources/js/admin.js b/openid-connect-server-webapp/src/main/webapp/resources/js/admin.js index c96344e29..f62724669 100644 --- a/openid-connect-server-webapp/src/main/webapp/resources/js/admin.js +++ b/openid-connect-server-webapp/src/main/webapp/resources/js/admin.js @@ -466,7 +466,7 @@ var AppRouter = Backbone.Router.extend({ newClient:function() { if (!isAdmin()) { - this.root()(); + this.root(); return; } @@ -497,7 +497,7 @@ var AppRouter = Backbone.Router.extend({ editClient:function(id) { if (!isAdmin()) { - this.root()(); + this.root(); return; } @@ -536,7 +536,7 @@ var AppRouter = Backbone.Router.extend({ whiteList:function () { if (!isAdmin()) { - this.root()(); + this.root(); return; } @@ -555,7 +555,7 @@ var AppRouter = Backbone.Router.extend({ newWhitelist:function(cid) { if (!isAdmin()) { - this.root()(); + this.root(); return; } @@ -590,7 +590,7 @@ var AppRouter = Backbone.Router.extend({ editWhitelist:function(id) { if (!isAdmin()) { - this.root()(); + this.root(); return; } @@ -669,7 +669,7 @@ var AppRouter = Backbone.Router.extend({ blackList:function() { if (!isAdmin()) { - this.root()(); + this.root(); return; } @@ -693,7 +693,7 @@ var AppRouter = Backbone.Router.extend({ siteScope:function() { if (!isAdmin()) { - this.root()(); + this.root(); return; } @@ -712,7 +712,7 @@ var AppRouter = Backbone.Router.extend({ newScope:function() { if (!isAdmin()) { - this.root()(); + this.root(); return; } @@ -734,7 +734,7 @@ var AppRouter = Backbone.Router.extend({ editScope:function(sid) { if (!isAdmin()) { - this.root()(); + this.root(); return; }