From 8ce1038c8adf9342a90abf75fef219435827f917 Mon Sep 17 00:00:00 2001 From: devfake Date: Tue, 23 Jun 2015 10:22:35 +0200 Subject: [PATCH] remove jquery selector --- site/client/app/components/landing.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/client/app/components/landing.js b/site/client/app/components/landing.js index ea4cec3..616f5e3 100644 --- a/site/client/app/components/landing.js +++ b/site/client/app/components/landing.js @@ -41,7 +41,7 @@ module.exports = { }, closeLogin: function(e) { - if($(e.target).context.className == 'modal active') { + if(e.target.className == 'modal active') { this.modal = false; } }