ember-collection
ember-collection copied to clipboard
Can README specify supported/tested browsers, Ember versions, etc.?
I'm glad to see this project reawaken, but I don't know if it will work for us. Are IE11 and old Edge supported by the reawakened addon? What about Ember versions? How far back? Maybe this could go up near the installation section, where people are deciding whether to install it or not.
@lupestro Good idea :) Unfortunately I personally don't have the time to create something like this and it is something that hard to maintain. If you, or someone else, is up to the task I will gladly merge in PRs related to this :)
If it helps I'm using Ember 2.8.3 and it didn't work for me because the layout helpers are using the new modular imports:
import { helper } from '@ember/component/helper';
import PercentageColumns from 'ember-collection/layouts/percentage-columns';
export default helper(function (params) {
return new PercentageColumns(params[0], params[1], params[2]);
});
I had to create my own helper with the old format:
import PercentageColumns from 'ember-collection/layouts/percentage-columns';
export default Ember.Helper.helper(function(params) {
return new PercentageColumns(params[0], params[1], params[2]);
});
I'm also using the alpha 8 version. Hope that helps.