Angular Chosen Versions Save

AngularJS Chosen directive is an AngularJS Directive that brings the Chosen jQuery in a AngularJS way

v1.9.3

5 years ago
  • Allow angular-chosen to be used without ng-model
  • Update the list of allowed chosen options from the current chosen release

1.9.2

5 years ago

Fix README links

1.9.1

5 years ago

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

5 years ago

Thanks for amazing contribution from @VanTanev again.

We finally fixed #59 and #221.

1.8.0

6 years ago

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

1.7.0

6 years ago

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

7 years ago

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!'
        });
    }]);

1.5.1

7 years ago

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

1.5.0

7 years ago

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

1.4.3

7 years ago

Thank you @frnan for the solution using jQuery.

Fix #59