2
0
mirror of https://github.com/devbridge/jQuery-Autocomplete.git synced 2024-09-19 16:59:01 +00:00
Commit Graph

312 Commits

Author SHA1 Message Date
Tomas Kirda
57528dd120 Rev for 1.4.3 release 2017-09-21 17:42:19 -05:00
Tomas Kirda
37bf4627f2 Correctly extend options. 2017-09-21 17:36:53 -05:00
Tomas Kirda
63aa789722 Merge pull request #648 from oshihirii/patch-1
Some readme file changes
2017-09-09 09:01:40 -05:00
oshihirii
fa88402642 Updated readme
Readability changes
2017-09-09 13:53:01 +10:00
oshihirii
aca25b9047 Re-categorised settings information in readme
Re-categorised settings information in readme for easier reference.

Added settings information to tables for increased readability.  

Added entry for the `onHint` setting which is currently undocumented.
2017-09-09 13:39:50 +10:00
Tomas Kirda
192bb3135e Rev for 1.4.2 release 2017-08-24 08:04:32 -05:00
Tomas Kirda
ae5f70052b Merge pull request #639 from erotte/migrate-isArray
migrate deprecated `$.isArray` to `Array.isArray`
2017-08-24 08:01:49 -05:00
Eckhard Rotte
5b3da47ca6 migrate dprecated $.isArray to Array.isArray
`$.isArray` is deprecated in jQuery 3.2, so Array.isArray should be the way to go.

https://github.com/jquery/jquery/issues/2961
https://blog.jquery.com/2017/03/16/jquery-3-2-0-is-out/
2017-08-24 11:03:55 +02:00
Tomas Kirda
59a1293774 Merge pull request #607 from ToastHawaii/patch-1
Try to make types visible in npm
2017-04-14 07:50:00 -05:00
ToastHawaii
5e1d7bd6b0 Try to make types visible in npm
I can't find your types in npm. I change the package.json like descripted here http://www.typescriptlang.org/docs/handbook/declaration-files/publishing.html.
2017-04-14 08:28:30 +02:00
Tomas Kirda
cae37b9b16 Rev for 1.4.0 release 2017-04-03 17:05:29 -05:00
Tomas Kirda
cadd05fae2 Default appendTo container to "body". Fixes #600 2017-04-03 16:58:02 -05:00
Tomas Kirda
5a15becb22 Rev for 1.4.0 release 2017-03-29 12:10:43 -05:00
Tomas Kirda
91dc0d1b96 Do not overwrite existing autocomplete, fixes #599 2017-03-29 12:08:04 -05:00
Tomas Kirda
14810a1229 Merge pull request #596 from ErikSchierboom/patch-1
Update README to use correct markdown for headers
2017-03-21 08:38:15 -05:00
Tomas Kirda
44ad25665f Merge pull request #597 from ErikSchierboom/patch-2
Fix typo in src/jquery.autocomplete.js
2017-03-21 08:37:35 -05:00
Erik Schierboom
0927361647 Fix typo 2017-03-21 14:09:47 +01:00
Erik Schierboom
5c33d71acb Update README to use correct markdown for headers 2017-03-21 13:38:34 +01:00
Tomas Kirda
2b29ca6f64 Merge pull request #590 from stonio/patch-5
TypeScript - Update lookup definition
2017-03-13 08:55:17 -05:00
stonio
bfd9899e2e Update jquery.autocomplete.d.ts - Update lookup definition 2017-03-13 14:52:29 +01:00
Tomas Kirda
d556a873e7 Hide suggestions on blur, remove document click listeners. Fixes #447. 2017-03-05 20:35:32 -06:00
Tomas Kirda
1eff0300eb Remove <strong /> tag when formatting group, closes #450 2017-03-05 19:51:12 -06:00
Tomas Kirda
21b90eb7e6 Expose default options, closes #478 2017-03-05 19:28:49 -06:00
Tomas Kirda
43a31502c4 Call beforeRender even if there are no suggestions. Closes #507 2017-03-05 19:00:07 -06:00
Tomas Kirda
a279fe90b3 Update documentation, fixes #557 2017-03-05 18:40:19 -06:00
Tomas Kirda
72b275819a Set params after onSearchStart has been called, closes #561 2017-03-05 18:37:15 -06:00
Tomas Kirda
8d07d2cbdf Change setInterval to setTimeout, closes #575 2017-03-05 18:33:29 -06:00
Tomas Kirda
56677b9f8b Update documentation, closes #542 2017-03-05 18:19:38 -06:00
Tomas Kirda
0ba374d7e3 Rev for 1.3.0 release 2017-01-20 12:06:07 -06:00
Tomas Kirda
f756a441bf Allow to override formatGroup callback via options, closes #505, #387 2017-01-20 11:59:10 -06:00
Tomas Kirda
19a97900ec Fix indentation: convert tabs to spaces 2017-01-20 11:45:42 -06:00
Tomas Kirda
6b83874ecd Merge pull request #569 from MrSam/master
Introduce 'flex' width setting to auto size suggestion length
2017-01-20 11:35:09 -06:00
Sam Hermans
eb7be992c5 Fixed typo and newline 2017-01-20 18:33:00 +01:00
Sam Hermans
cfafe7ad6a Introduce 'flex' width setting to auto size suggestion length 2017-01-20 17:22:37 +01:00
Tomas Kirda
062811cd42 Rev for 1.2.27 release 2016-11-17 09:16:20 -06:00
Tomas Kirda
607afd0713 Merge pull request #552 from mmcev106/master
Fixed a bug where the suggestion list briefly flashes when the select…
2016-11-03 15:32:22 -05:00
Mark McEver
c08a31dd78 Fixed a bug where the suggestion list briefly flashes when the selected suggestion is a prefix of another suggestion. Prior to this fix, the problem can be reproduced as follows:
1. Open the index.html demo (this url is convenient: https://rawgit.com/devbridge/jQuery-Autocomplete/master/index.htm)
2. In the country name field type "N" then select "Niger" from the list (this country is a prefix for "Nigeria").
3. Click the country name field again.  The suggestion list will flash briefly then dissappear.  The user must then click off of the field and back onto it to actually see the suggestion list.
2016-11-03 15:21:33 -05:00
Tomas Kirda
017965bddd Merge pull request #547 from rushimusmaximus/patch-1
fixed typo in "comma"
2016-10-24 13:05:57 -05:00
Michael Rush
3fc25f5886 fixed typo in "comma" 2016-10-24 10:14:54 -07:00
Tomas Kirda
8d18bdadba Rev for 1.2.26 release 2016-07-28 15:52:45 -05:00
Tomas Kirda
25de88ee6b No need to restore value when preserveInput is set to true, fixes #521 2016-07-28 15:50:35 -05:00
Tomas Kirda
0068bf02ed Merge pull request #520 from swey/pr
switched to box-sizing border-box and removed the expected 1px border…
2016-07-27 09:04:45 -05:00
Sebastian Weyrauch
b42125f9fe reverted package.json to the one of main repository 2016-07-27 07:55:36 +02:00
Sebastian Weyrauch
2c81daeb01 set all widths with .css(), not with .width() 2016-07-27 07:52:54 +02:00
Sebastian Weyrauch
d9c4dd622c also changed the width calculation in adjustContainerWidth 2016-07-27 07:38:07 +02:00
Sebastian Weyrauch
3b4d260c17 adjusted the package.json for usage from this forked repository 2016-07-27 07:30:19 +02:00
Sebastian Weyrauch
8e9be831ee adjusted the package.json for usage from this forked repository 2016-07-27 07:22:42 +02:00
Sebastian Weyrauch
69d2f1a78d switched to box-sizing border-box and removed the expected 1px border from the width calculation in javascript 2016-07-27 07:04:17 +02:00
Tomas Kirda
3b49827db4 Merge pull request #512 from stonio/patch-3
Update npm devDependencies
2016-07-14 14:14:13 -05:00
stonio
575f785fec package.json - main dist/jquery.autocomplete.js
Restore "dist/jquery.autocomplete.js" as main package file.
2016-07-07 18:23:56 +02:00