Skip to content

Commit 231052e

Browse files
author
tombertrand
committed
Version 2.11.1
Fix - #505 init of multiple Typeaheads with dynamic filter option
1 parent b8be530 commit 231052e

File tree

4 files changed

+48
-50
lines changed

4 files changed

+48
-50
lines changed

README.md

Lines changed: 43 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,43 @@
1-
[![Build Status](https://travis-ci.org/running-coder/jquery-typeahead.svg?branch=develop&style=flat-square)](https://travis-ci.org/running-coder/jquery-typeahead)
2-
[![npm:](https://img.shields.io/npm/v/jquery-typeahead.svg?style=flat-square)](https://www.npmjs.com/package/jquery-typeahead)
3-
[![license:mit](https://img.shields.io/badge/license-mit-green.svg?style=flat-square)](#license)
4-
[![Built with gulp](http://img.shields.io/badge/built%20with-gulp.js-red.svg?style=flat-square)](http://gulpjs.com/)
5-
6-
# jQuery Typeahead
7-
8-
The jQuery Typeahead plugin provides autocomplete preview on search inputs similar to google search with builtin options and deep customization.
9-
It is a simple clientside library that will improve the user experience on your website search input!
10-
11-
The jQuery Typeahead plugin is released under the MIT License.
12-
13-
The complete documentation, demo and further instructions can be found at www.runningcoder.org
14-
15-
## Installation
16-
17-
bower install jquery-typeahead
18-
19-
or
20-
21-
npm install jquery-typeahead
22-
23-
## Documentation
24-
25-
You can find the complete documentation on www.runningcoder.org/jquerytypeahead/documentation/
26-
27-
## Demos
28-
29-
www.runningcoder.org/jquerytypeahead/demo/
30-
31-
## Version Notes
32-
33-
www.runningcoder.org/jquerytypeahead/version/
34-
35-
## Pull Requests
36-
37-
Please consider these points before creating a new pull request
38-
39-
- Pull request should be made from `develop` to `develop` branch so it can be tested properly and not be directly available to download on the `master`.
40-
The `master` branch should be a copy of the latest released `tag` without any additional new code that has not been released
41-
- Add a descriptive note along with the PR and examples
42-
- Only submit the changed lines and not the whole file(s)
43-
- Follow the same coding conversions
44-
45-
Buy me a coffee with ETH: `0x38084cF7Ba4D84D8d9E5C185c66B4C234D8d4764`
1+
[![Build Status](https://travis-ci.org/running-coder/jquery-typeahead.svg?branch=develop&style=flat-square)](https://travis-ci.org/running-coder/jquery-typeahead)
2+
[![npm:](https://img.shields.io/npm/v/jquery-typeahead.svg?style=flat-square)](https://www.npmjs.com/package/jquery-typeahead)
3+
[![license:mit](https://img.shields.io/badge/license-mit-green.svg?style=flat-square)](#license)
4+
[![Built with gulp](http://img.shields.io/badge/built%20with-gulp.js-red.svg?style=flat-square)](http://gulpjs.com/)
5+
6+
# jQuery Typeahead
7+
8+
The jQuery Typeahead plugin provides autocomplete preview on search inputs similar to google search with builtin options and deep customization.
9+
It is a simple clientside library that will improve the user experience on your website search input!
10+
11+
The jQuery Typeahead plugin is released under the MIT License.
12+
13+
The complete documentation, demo and further instructions can be found at www.runningcoder.org
14+
15+
## Installation
16+
17+
npm install jquery-typeahead
18+
19+
or
20+
21+
yarn add jquery-typeahead
22+
23+
## Documentation
24+
25+
You can find the complete documentation on www.runningcoder.org/jquerytypeahead/documentation/
26+
27+
## Demos
28+
29+
www.runningcoder.org/jquerytypeahead/demo/
30+
31+
## Version Notes
32+
33+
www.runningcoder.org/jquerytypeahead/version/
34+
35+
## Pull Requests
36+
37+
Please consider these points before creating a new pull request
38+
39+
- Pull request should be made from `develop` to `develop` branch so it can be tested properly and not be directly available to download on the `master`.
40+
The `master` branch should be a copy of the latest released `tag` without any additional new code that has not been released
41+
- Add a descriptive note along with the PR and examples
42+
- Only submit the changed lines and not the whole file(s)
43+
- Follow the same coding conversions

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.11.0",
3+
"version": "2.11.1",
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.11.0 (2020-5-13)
7+
* @version 2.11.1 (2020-5-18)
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.11.0'
33+
version: '2.11.1'
3434
};
3535

3636
/**

0 commit comments

Comments
 (0)