Skip to content

Steak and salad

Compare
Choose a tag to compare
@cibernox cibernox released this 13 Apr 15:54
· 963 commits to master since this release

I head that summer is coming a it's time to start doing diet, right?

Well, Ember Power Select is doing that! πŸŽ‰
Starting with 1.7.0 the addon is 100% jQuery-free. You can the addon and the test helper that it provides on jQuery-free apps.

As a consequence of this CSS selectors passed to test helpers that end up in :eq() are now deprecated. They are still supported but will be removed in 1.8.0. Of you want to take the NTH option, now the selectChoose helper accepts a third numeric argument that can be used for the same thing you used to use :eq(number).

selectChoose('.language-picker', '.ember-power-select-option', 5); // It's going to select the 6th element that matches `.ember-power-select-option` query.