From ece1b56095f151d147c84cc80872eb476c42bbf9 Mon Sep 17 00:00:00 2001 From: Justin Richer Date: Thu, 13 Sep 2012 10:26:02 -0400 Subject: [PATCH] added missing brackets --- openid-connect-server/src/main/webapp/resources/js/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openid-connect-server/src/main/webapp/resources/js/app.js b/openid-connect-server/src/main/webapp/resources/js/app.js index 7051f9f5a..2dd69a647 100644 --- a/openid-connect-server/src/main/webapp/resources/js/app.js +++ b/openid-connect-server/src/main/webapp/resources/js/app.js @@ -52,9 +52,9 @@ render:function () { this.$el.html(this.template(this.model.toJSON())); - if (this.model.get('item').length > 27) + if (this.model.get('item').length > 27) { this.$el.tooltip({title:this.model.get('item')}); - + } return this; } }),