Explicitly return false from toggleBurgerMenu to not bubble action

This commit is contained in:
Piotr Sarnacki 2015-02-12 18:48:32 +01:00
parent f17f0ceb7b
commit 7375fbb440

View File

@ -15,6 +15,7 @@ Controller = Ember.Controller.extend
actions: {
toggleBurgerMenu: ->
@toggleProperty('is-open')
return false
}
`export default Controller`