ContributorsLast modified on: Mar 25, 2016
farhan687

Problem

You want to toggle a boolean property.

Solution

Use the toggleProperty method of an Ember.Object.

obj.toggleProperty('isVisible');
Example