Skip to content

Commit c4caf64

Browse files
committed
Version 2.10.6
Fixes - Fix #401 $.Ajax call for multiple groups from separate sources, if a single source fails, typeahead remains in fetching data view - Fix #438 Too many ajax calls with multiple groups
1 parent 361cc1e commit c4caf64

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ The `master` branch should be a copy of the latest released `tag` without any ad
4242
- Only submit the changed lines and not the whole file(s)
4343
- Follow the same coding conversions
4444

45-
Buy me a coffee with ETH: 0x38084cF7Ba4D84D8d9E5C185c66B4C234D8d4764
45+
Buy me a coffee with ETH: `0x38084cF7Ba4D84D8d9E5C185c66B4C234D8d4764`

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-typeahead",
3-
"version": "2.10.5",
3+
"version": "2.10.6",
44
"authors": [
55
"Tom Bertrand"
66
],

dist/jquery.typeahead.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-typeahead",
3-
"version": "2.10.5",
3+
"version": "2.10.6",
44
"description": "jQuery plugin that provides Typeahead (autocomplete) Search preview from Json object(s) via same domain Ajax request or cross domain Jsonp and offers data compression inside Local Storage. The plugin is built with a lot of options and callbacks to allow customization.",
55
"author": {
66
"name": "Tom Bertrand"

src/jquery.typeahead.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Licensed under the MIT license
55
*
66
* @author Tom Bertrand
7-
* @version 2.10.5 (2018-7-24)
7+
* @version 2.10.6 (2018-7-30)
88
* @link http://www.runningcoder.org/jquerytypeahead/
99
*/
1010
(function (factory) {
@@ -30,7 +30,7 @@
3030
"use strict";
3131

3232
window.Typeahead = {
33-
version: '2.10.5'
33+
version: '2.10.6'
3434
};
3535

3636
/**

0 commit comments

Comments
 (0)