From 49eea7f6e23d02c2c3bcbfecabe9e4be711a0fea Mon Sep 17 00:00:00 2001 From: Fabian Becker Date: Thu, 25 Sep 2014 16:33:47 +0000 Subject: [PATCH] Close mobile menu on tap. fixes #4168 - Listen to tap event --- core/client/views/application.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/client/views/application.js b/core/client/views/application.js index d60b2d8c23..0b87934bd5 100644 --- a/core/client/views/application.js +++ b/core/client/views/application.js @@ -8,14 +8,14 @@ var ApplicationView = Ember.View.extend({ setupGlobalMobileNav: function () { // #### Navigating within the sidebar closes it. var self = this; - $('body').on('click', '.js-nav-item', function () { + $('body').on('click tap', '.js-nav-item', function () { if (mobileQuery.matches) { self.set('controller.showGlobalMobileNav', false); } }); // #### Close the nav if mobile and clicking outside of the nav or not the burger toggle - $('.js-nav-cover').on('click', function () { + $('.js-nav-cover').on('click tap', function () { var isOpen = self.get('controller.showGlobalMobileNav'); if (isOpen) { self.set('controller.showGlobalMobileNav', false);