enumerableContentDidChange (removing, adding) private
Invoke this method when the contents of your enumerable has changed. This will notify any observers watching for content changes. If you are implementing an ordered enumerable (such as an array), also pass the start and end values where the content changed so that it can be used to notify range observers.
Parameters:
-
removing
Ember.Enumerable|Number
- An enumerable of the objects to be removed or the number of items to be removed.
-
adding
Ember.Enumerable|Number
- An enumerable of the objects to be added or the number of items to be added.
Please login to continue.