Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BREAKING CHANGE: Update addon to support Ember2 Get rid of the two-way binding and use 'data down, actions up (DDAU)'. See: http://emberjs.com/blog/2015/06/12/ember-1-13-0-released.html#toc_ember-2-0-beta Usage Before: ```handlebars {{bs-datetimepicker date=mydate format='YYYY-MM-DD'}} ``` Usage Now (> v1.0.0): ```handlebars {{bs-datetimepicker date=mydate format='YYYY-MM-DD' updateDate=(action (mut model.date2))}} ``` Also check this commit d965e85q
- Loading branch information