Skip to content

Commit a8427c4

Browse files
committed
fix change log header levels
1 parent a0fd176 commit a8427c4

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

CHANGELOG.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# jQuery.filterTable Change Log
22

3-
### 1.5.6
3+
## 1.5.6
44
- Fixed filtering to work for special characters `'`, `"`, and `\`.
55
- Minor documentation updates.
66

7-
### 1.5.5
7+
## 1.5.5
88

99
- The filtering should now trigger automatically on input on iOS. For some reason, Safari iOS triggers a `blur` event on field change but not `keyup` or other related events.
1010
- A new feature for extending the plugin (option `filterExpression`) has been added. The default is unchanged—the literal filter string.
@@ -17,26 +17,26 @@
1717
- Merged [Jason](https://github.com/deadbeef404)’s `minRows` bug fix.
1818
- Added an FAQ file.
1919

20-
### 1.5.4
20+
## 1.5.4
2121

2222
- Added a return key trap to the input filter field so that pressing return in the field should not submit any forms the table may be within.
2323
- The `preventReturnKey` option (`true` by default) has been added to allow you to switch back to the previous behavior of allowing the return key to submit forms.
2424

25-
### 1.5.3
25+
## 1.5.3
2626

2727
- **There is a potentially significant change in functionality in this version.** While the documentation offered the `inputSelector` option, within the code it was implemented as `filterSelector`. This has been corrected to match the documentation. Note that if you were previously using the `filterSelector` option to overcome this issue, you will need to change it to `inputSelector` to use the feature with this version.
2828

29-
### 1.5.2
29+
## 1.5.2
3030

3131
- Added an `inputSelector` option, thanks to [Pratik Thakkar](https://github.com/pratikt), which specifies a selector for an existing element to use instead of creating a new filter input field. There are some caveats of which to be aware:
3232
- If the element doesn't exist, a filter input field will be created as normal.
3333
- Because of quick lists and other options, this setting will be ignored and the filter input field will be created as normal if the resolution of the `inputSelector` returns more than one element.
3434

35-
### 1.5.1
35+
## 1.5.1
3636

3737
- Added an `autofocus` option, thanks to [Robert McLeod](https://github.com/penguinpowernz), which is disabled by default. Note that autofocus is generally a bad idea for accessibility reasons, but if you do not need to be compliant or don't want to support accessibility users, it's a nice user experience option.
3838

39-
### 1.5
39+
## 1.5
4040

4141
- **There is a potentially significant change in functionality in this version.** The callback is now called every time the search query changes. Previously it was only called when the change was a non-empty query. That is, the callback is now called when the query is cleared too.
4242
- Additional features have been taken from [Tomas Celizna](https://github.com/tomasc)'s CoffeeScript-based fork:
@@ -46,25 +46,25 @@
4646
- The options in the documentation have been ordered alphabetically for easier scanning.
4747
- The internal pseudo selector is now created appropriately according to the jQuery version. (Pseudo selector generation changed in jQuery 1.8)
4848

49-
### 1.4
49+
## 1.4
5050

5151
- Fixed a bug with filtering rarely showing rows that did not have a match with the search query.
5252
- Added example pages.
5353
- Improved inline documentation of the source code.
5454

55-
### 1.3.1 (in spirit)
55+
## 1.3.1 (in spirit)
5656

5757
- Added minified version of the plugin (thanks [Luke Stevenson](https://github.com/lucanos)).
5858

59-
### 1.3
59+
## 1.3
6060

6161
- The functionality is not reapplied to tables that have already been processed. This allows you to call `$(selector).filterTable()` again for dynamically created data without it affecting previously filtered tables.
6262

63-
### 1.2
63+
## 1.2
6464

6565
- Changed the default container class to `filter-table` from `table-filter` to be consistent with the plugin name.
6666
- Made the cell highlighting class an option rather than hard-coded.
6767

68-
### 1.1
68+
## 1.1
6969

7070
- Initial public release.

0 commit comments

Comments
 (0)