Skip to content
This repository was archived by the owner on Mar 12, 2020. It is now read-only.

Commit c264f9b

Browse files
committed
Linking changelog issues
1 parent cadc484 commit c264f9b

1 file changed

Lines changed: 33 additions & 33 deletions

File tree

CHANGELOG.md

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,82 +1,82 @@
11
Changelog
22
=========
33
### 0.10.2
4-
* Fixed a bug with the form still submitting even with errors when using the `disable: false` option. (#310)
5-
* Fixed a bug with the error field not being focused when using the `disable: false` option. (#310)
4+
* Fixed a bug with the form still submitting even with errors when using the `disable: false` option. ([#310](https://github.com/1000hz/bootstrap-validator/issues/310))
5+
* Fixed a bug with the error field not being focused when using the `disable: false` option. ([#310](https://github.com/1000hz/bootstrap-validator/issues/310))
66

77
### 0.10.1
88
* You can now override `$.fn.validator.Constructor.FOCUS_OFFSET` to set a custom offset from the top of the window the page should scroll to when the `focus` option is true. Defaults to 20px.
99

1010
### 0.10.0
11-
* Adding the `focus` option to scroll to and focus the first field with an error (#128)
12-
* Add support for Bootstrap 4 `.has-danger` class (#271)
13-
* Only running validators if the field has a value or is required (#214)
14-
* Immediately validate on blur (#130)
15-
* Caching selected form fields to greatly improve performance (#234)
16-
* Only validate a field if it is dirty or invalid (#258, #152)
17-
* Handle feedback icons in .destroy() (#123)
11+
* Adding the `focus` option to scroll to and focus the first field with an error ([#128](https://github.com/1000hz/bootstrap-validator/issues/128))
12+
* Add support for Bootstrap 4 `.has-danger` class ([#271](https://github.com/1000hz/bootstrap-validator/issues/271))
13+
* Only running validators if the field has a value or is required ([#214](https://github.com/1000hz/bootstrap-validator/issues/214))
14+
* Immediately validate on blur ([#130](https://github.com/1000hz/bootstrap-validator/issues/130))
15+
* Caching selected form fields to greatly improve performance ([#234](https://github.com/1000hz/bootstrap-validator/issues/234))
16+
* Only validate a field if it is dirty or invalid ([#258](https://github.com/1000hz/bootstrap-validator/issues/258), [#152](https://github.com/1000hz/bootstrap-validator/issues/152))
17+
* Handle feedback icons in .destroy() ([#123](https://github.com/1000hz/bootstrap-validator/issues/123))
1818
* Change feedback to check if .form-group .has-feedback
19-
* Only show success feedback if field has value (#252)
20-
* Scoping `input`/`change`/`focusout` event handlers to `INPUT_SELECTOR` elements (#251)
21-
* Updated the `main` path in bower.json (#219)
19+
* Only show success feedback if field has value ([#252](https://github.com/1000hz/bootstrap-validator/issues/252))
20+
* Scoping `input`/`change`/`focusout` event handlers to `INPUT_SELECTOR` elements ([#251](https://github.com/1000hz/bootstrap-validator/issues/251))
21+
* Updated the `main` path in bower.json ([#219](https://github.com/1000hz/bootstrap-validator/issues/219))
2222

2323
### 0.9.0
24-
* Adding new `feedback` option to override the classes used for feedback icons (#97)
24+
* Adding new `feedback` option to override the classes used for feedback icons ([#97](https://github.com/1000hz/bootstrap-validator/issues/97))
2525
* Exposing selector used to determine which inputs to validate as `Validator.INPUT_SELECTOR`
26-
* Removing inline styles on submit button no longer needed in Bootstrap v3.3.5 (#166)
27-
* Add `jquery >= 1.8.3` to bower.json (#160)
26+
* Removing inline styles on submit button no longer needed in Bootstrap v3.3.5 ([#166](https://github.com/1000hz/bootstrap-validator/issues/166))
27+
* Add `jquery >= 1.8.3` to bower.json ([#160](https://github.com/1000hz/bootstrap-validator/issues/160))
2828

2929
###### Docs Changes
3030
* Upgrade to Bootstrap v3.3.5
3131
* Added a form-feedback example to the docs
3232
* Added a custom validator server example to the docs
3333

3434
### 0.8.1
35-
* No longer running validators on button elements. Fixes #93.
36-
* No longer running validators on invisible input elements. Fixes #65.
37-
* Adding support for `button[form="myForm"]`. Fixes #74.
35+
* No longer running validators on button elements. Fixes [#93](https://github.com/1000hz/bootstrap-validator/issues/93).
36+
* No longer running validators on invisible input elements. Fixes [#65](https://github.com/1000hz/bootstrap-validator/issues/65).
37+
* Adding support for `button[form="myForm"]`. Fixes [#74](https://github.com/1000hz/bootstrap-validator/issues/74).
3838

3939
### 0.8.0
4040
* Adding custom validators option.
4141
* Only adding .has-success class if there is a `.form-control-feedback` present.
4242

4343
### 0.7.3
44-
* No longer validating `input[type="hidden"]` fields. Fixes #84.
44+
* No longer validating `input[type="hidden"]` fields. Fixes [#84](https://github.com/1000hz/bootstrap-validator/issues/84).
4545
* Adding support for Bootstrap's feedback icons.
4646

4747
### 0.7.2
48-
* Namespacing the manually-triggered `input` events. Fixes #38.
49-
* Adding a note to the docs about polyfills and cross-browser compatibility in IE9 and older. Fixes #18.
50-
* Adding a note to the docs about conditionally handling the submit event if the form is invalid. Fixes #44.
48+
* Namespacing the manually-triggered `input` events. Fixes [#38](https://github.com/1000hz/bootstrap-validator/issues/38).
49+
* Adding a note to the docs about polyfills and cross-browser compatibility in IE9 and older. Fixes [#18](https://github.com/1000hz/bootstrap-validator/issues/18).
50+
* Adding a note to the docs about conditionally handling the submit event if the form is invalid. Fixes [#44](https://github.com/1000hz/bootstrap-validator/issues/44).
5151

5252
### 0.7.0
53-
* Adding a `disable` option to control whether or not the form submit is disabled if the form is invalid. Defaults to true. See #46.
54-
* URI-encoding params sent via remote validator. Fixes #56.
53+
* Adding a `disable` option to control whether or not the form submit is disabled if the form is invalid. Defaults to true. See [#46](https://github.com/1000hz/bootstrap-validator/issues/46).
54+
* URI-encoding params sent via remote validator. Fixes [#56](https://github.com/1000hz/bootstrap-validator/issues/56).
5555

5656
### 0.6.0
57-
* Adding `.validator('destroy')` method. Fixes #10.
57+
* Adding `.validator('destroy')` method. Fixes [#10](https://github.com/1000hz/bootstrap-validator/issues/10).
5858
* Not calling window.setTimeout() if options.delay == 0
5959
* Fixing broken docs example
6060
* Moved docs content to /docs directory of project
6161

6262
### 0.5.0
63-
* Adding `remote` validator to send an AJAX request to determine a fields validity. Fixes #2.
64-
* Making the disabled submit button clickable to reveal what errors are keeping the form disabled. Fixes #8.
65-
* Fixing small issue with errored radio buttons that made the form stay disabled until you toggled through each radio button. Fixes #21.
63+
* Adding `remote` validator to send an AJAX request to determine a fields validity. Fixes [#2](https://github.com/1000hz/bootstrap-validator/issues/2).
64+
* Making the disabled submit button clickable to reveal what errors are keeping the form disabled. Fixes [#8](https://github.com/1000hz/bootstrap-validator/issues/8).
65+
* Fixing small issue with errored radio buttons that made the form stay disabled until you toggled through each radio button. Fixes [#21](https://github.com/1000hz/bootstrap-validator/issues/21).
6666

6767
### 0.4.0
6868
* Adding `html` option to allow html in error messages. Defaults to false.
69-
* Validator now ignores disabled fields and won't consider them to be invalid. Fixes #13.
70-
* Validator only disables buttons with `[type="submit"]`. Best practice is still to give a `[type="button"]` for all non-submit buttons. Fixes #17.
71-
* Fixing `.noConflict()` as per twbs/bootstrap#11464.
69+
* Validator now ignores disabled fields and won't consider them to be invalid. Fixes [#13](https://github.com/1000hz/bootstrap-validator/issues/13).
70+
* Validator only disables buttons with `[type="submit"]`. Best practice is still to give a `[type="button"]` for all non-submit buttons. Fixes [#17](https://github.com/1000hz/bootstrap-validator/issues/17).
71+
* Fixing `.noConflict()` as per twbs/bootstrap[#11464](https://github.com/1000hz/bootstrap-validator/issues/11464).
7272
* Namespacing all data attributes the plugin sets with `bs.validator`.
7373

7474
### 0.3.0
75-
* Adding support for required radio buttons and checkboxes. Fixes #7.
75+
* Adding support for required radio buttons and checkboxes. Fixes [#7](https://github.com/1000hz/bootstrap-validator/issues/7).
7676
* Changing jekyll to serve docs from `/` instead of `/validator` when running docs locally
7777

7878
### 0.2.1
79-
* Validating fields on blur so empty required fields are subject to validation once they've been touched. Fixes #3.
79+
* Validating fields on blur so empty required fields are subject to validation once they've been touched. Fixes [#3](https://github.com/1000hz/bootstrap-validator/issues/3).
8080

8181
### 0.2.0
8282
* Initial public release

0 commit comments

Comments
 (0)