diff options
| author | fat <[email protected]> | 2013-08-02 15:13:12 -0700 |
|---|---|---|
| committer | fat <[email protected]> | 2013-08-02 15:13:12 -0700 |
| commit | f6cec812a6a0a4488fc675bbe7d02cfe7d1f7a2d (patch) | |
| tree | 1caa86fe1a3349d6c3e235b84e9fd2c6ce2ef0cf /js | |
| parent | e969d2ff18214c8d3b2730155d933c0acd614344 (diff) | |
| download | bootstrap-f6cec812a6a0a4488fc675bbe7d02cfe7d1f7a2d.tar.xz bootstrap-f6cec812a6a0a4488fc675bbe7d02cfe7d1f7a2d.zip | |
fixes #8957
Diffstat (limited to 'js')
| -rw-r--r-- | js/button.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/js/button.js b/js/button.js index ae5602fc2..fc73b555f 100644 --- a/js/button.js +++ b/js/button.js @@ -56,7 +56,9 @@ var $parent = this.$element.closest('[data-toggle="buttons"]') if ($parent.length) { - var $input = this.$element.find('input').prop('checked', !this.$element.hasClass('active')) + var $input = this.$element.find('input') + .prop('checked', !this.$element.hasClass('active')) + .trigger('change') if ($input.prop('type') === 'radio') $parent.find('.active').removeClass('active') } |
