Skip to content

Releases: leocaseiro/angular-chosen

Release 1.9.3

10 Feb 14:21
Compare
Choose a tag to compare
  • Allow angular-chosen to be used without ng-model
  • Update the list of allowed chosen options from the current chosen release

1.9.2 Release

03 Nov 08:46
Compare
Choose a tag to compare

Fix README links

1.9.1 Release

02 Nov 14:45
Compare
Choose a tag to compare

Fix #249 - $digest in progress error under special circumstances
Fix a bug with the scoping of the timer variable
Fix broken test for #179
Improve on the fixes for #59 and #221.

v1.9.0 Update change detection to not rely on chosen render state, but instead track select value updates

27 Sep 21:56
Compare
Choose a tag to compare

1.8.0: Fix ng-model issues

27 Jul 12:25
Compare
Choose a tag to compare

Thanks to @abyx and everyone who worked to get this fixed.

1.7.0 Release

22 May 08:02
Compare
Choose a tag to compare

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

13 Feb 00:33
Compare
Choose a tag to compare

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

21 Nov 00:41
Compare
Choose a tag to compare

Fix scroll height greater than -9000px instead of -9999px.

Remove $timeout and prevent of flickering element

29 Aug 13:13
Compare
Choose a tag to compare

Thanks for @liorch88 and @boeserwolf for helping with the issue #189

Fix #59 Don't scroll to top while Multi Select with Ctrl/Command

26 Jul 08:12
Compare
Choose a tag to compare

Thank you @frnan for the solution using jQuery.

Fix #59