Skip to content

Commit 34053e8

Browse files
committed
Release 2.3.7
Close #82
1 parent 53ebf52 commit 34053e8

File tree

7 files changed

+9
-11
lines changed

7 files changed

+9
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ It enhances form `input` and `select` field to provide autocomplete/typeahead ca
1010

1111
[Documentation](http://bootstrap-autocomplete.rtfd.io/)
1212

13-
Latest version: 2.3.6 (2020/08/25)
13+
Latest version: 2.3.7 (2020/08/27)
1414

1515
Version 2.0.0 and up supports Boostrap v4.x and old v3.x out of the box.
1616

dist/latest/bootstrap-autocomplete.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/latest/bootstrap-autocomplete.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
# The short X.Y version.
6363
version = u'2.3'
6464
# The full version, including alpha/beta/rc tags.
65-
release = u'2.3.6'
65+
release = u'2.3.7'
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# for a list of supported languages.

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Using CDN (thanks to JSDelivr)
4040
.. code-block:: html
4141
:caption: STABLE version |release|
4242

43-
<script src="https://cdn.jsdelivr.net/gh/xcash/bootstrap-autocomplete@v2.3.6/dist/latest/bootstrap-autocomplete.min.js"></script>
43+
<script src="https://cdn.jsdelivr.net/gh/xcash/bootstrap-autocomplete@v2.3.7/dist/latest/bootstrap-autocomplete.min.js"></script>
4444

4545
.. code-block:: html
4646
:caption: Latest version (this is the development branch)

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bootstrap-autocomplete",
3-
"version": "2.3.6",
4-
"description": "Bootstrap autocomplete for Bootstrap 3 and 4.",
3+
"version": "2.3.7",
4+
"description": "Autocomplete for Bootstrap version 4.",
55
"keywords": [
66
"bootstrap",
77
"autocomplete",

src/dropdownV4.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,7 @@ export class DropdownV4 {
208208
const disabledItem = itemFormatted.disabled;
209209

210210
const li = $('<a >');
211-
li.attr('href', '')
212-
.addClass('dropdown-item')
211+
li.addClass('dropdown-item')
213212
.css({ 'overflow': 'hidden', 'text-overflow': 'ellipsis' })
214213
.html(itemHtml)
215214
.data('item', item);
@@ -229,8 +228,7 @@ export class DropdownV4 {
229228
} else {
230229
// show no results message
231230
const li = $('<a >');
232-
li.attr('href', '')
233-
.addClass('dropdown-item disabled')
231+
li.addClass('dropdown-item disabled')
234232
.html(this.noResultsText);
235233

236234
liList.push(li);

0 commit comments

Comments
 (0)