Releases: leocaseiro/angular-chosen
Releases · leocaseiro/angular-chosen
Release 1.9.3
1.9.2 Release
Fix README links
1.9.1 Release
v1.9.0 Update change detection to not rely on chosen render state, but instead track select value updates
1.8.0: Fix ng-model issues
Thanks to @abyx and everyone who worked to get this fixed.
1.7.0 Release
Thanks to @VanTanev, we no longer shadow the chosen variable.
- We also run tests on Travis, so it makes easier/faster to approve PRs.
1.6.0 - Add chosenProvider
Now you are able to choose your default Values with chosenProvider.
Eq:
angular.module('chosenExampleApp', ['localytics.directives'])
.config(['chosenProvider', function (chosenProvider) {
chosenProvider.setOption({
no_results_text: 'There is no results!',
placeholder_text_multiple: 'Choose one or more!'
});
}]);
v1.5.1
Fix scroll height greater than -9000px instead of -9999px.
Remove $timeout and prevent of flickering element
Thanks for @liorch88 and @boeserwolf for helping with the issue #189