From b9cacdc596d18dc374ac4bbebbdfa0a82b5c4f08 Mon Sep 17 00:00:00 2001 From: Piotr Sarnacki Date: Thu, 12 Feb 2015 18:48:32 +0100 Subject: [PATCH] Explicitly return false from toggleBurgerMenu to not bubble action --- app/controllers/top.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/app/controllers/top.coffee b/app/controllers/top.coffee index 196b6df7..614d18ea 100644 --- a/app/controllers/top.coffee +++ b/app/controllers/top.coffee @@ -15,6 +15,7 @@ Controller = Ember.Controller.extend actions: { toggleBurgerMenu: -> @toggleProperty('is-open') + return false } `export default Controller`