From c6989e735b8adab730873cfcf6640d7a0b36e2e1 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Thu, 9 Jan 2014 20:14:38 -0500 Subject: [PATCH] Conditional the click --- static/js/app.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/static/js/app.js b/static/js/app.js index 4bdf12395..90eb85de3 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -2244,7 +2244,9 @@ quayApp.run(['$location', '$rootScope', 'Restangular', 'UserService', 'PlanServi return; } - this.click(); + if (this.click) { + this.click(); + } }); }, opt_timeout); };