Skip to content

Commit 57528dd

Browse files
author
Tomas Kirda
committed
Rev for 1.4.3 release
1 parent 37bf462 commit 57528dd

5 files changed

+9
-9
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "devbridge-autocomplete",
3-
"version": "1.4.2",
3+
"version": "1.4.3",
44
"homepage": "https://github.com/devbridge/jQuery-Autocomplete",
55
"authors": [
66
"Tomas Kirda"

devbridge-autocomplete.jquery.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"ajax",
77
"autocomplete"
88
],
9-
"version": "1.4.2",
9+
"version": "1.4.3",
1010
"author": {
1111
"name": "Tomas Kirda",
1212
"url": "https://github.com/tkirda"

dist/jquery.autocomplete.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Ajax Autocomplete for jQuery, version 1.4.2
2+
* Ajax Autocomplete for jQuery, version 1.4.3
33
* (c) 2017 Tomas Kirda
44
*
55
* Ajax Autocomplete for jQuery is freely distributable under the terms of an MIT-style license.
@@ -248,9 +248,7 @@
248248

249249
setOptions: function (suppliedOptions) {
250250
var that = this,
251-
options = that.options;
252-
253-
this.options = $.extend({}, options, suppliedOptions);
251+
options = $.extend({}, that.options, suppliedOptions);
254252

255253
that.isLocal = Array.isArray(options.lookup);
256254

@@ -266,6 +264,8 @@
266264
'width': options.width + 'px',
267265
'z-index': options.zIndex
268266
});
267+
268+
this.options = options;
269269
},
270270

271271

dist/jquery.autocomplete.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "devbridge-autocomplete",
3-
"version": "1.4.2",
3+
"version": "1.4.3",
44
"description": "Autocomplete provides suggestions while you type into the text field.",
55
"homepage": "https://github.com/devbridge/jQuery-Autocomplete",
66
"author": "Tomas Kirda (https://twitter.com/tkirda)",

0 commit comments

Comments
 (0)