Skip to content

Commit d409a16

Browse files
committed
Bump to 0.17.3
1 parent e39641b commit d409a16

8 files changed

+14
-10
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ For more information on semantic versioning, please visit http://semver.org/.
1616

1717
---
1818

19+
### 0.17.3 Apr 04, 2017
20+
21+
* Standalone: ensure we actually use the Zepto object and not whatever is in `window.$`
22+
1923
### 0.17.2 Mar 21, 2017
2024

2125
* Ability to setup the autocomplete on a multi-inputs Zepto selector

dist/autocomplete.angular.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* autocomplete.js 0.17.2
2+
* autocomplete.js 0.17.3
33
* https://github.com/algolia/autocomplete.js
44
* Copyright 2016 Algolia, Inc. and other contributors; Licensed MIT
55
*/

dist/autocomplete.angular.min.js

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

dist/autocomplete.jquery.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* autocomplete.js 0.17.2
2+
* autocomplete.js 0.17.3
33
* https://github.com/algolia/autocomplete.js
44
* Copyright 2016 Algolia, Inc. and other contributors; Licensed MIT
55
*/

dist/autocomplete.jquery.min.js

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

dist/autocomplete.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* autocomplete.js 0.17.2
2+
* autocomplete.js 0.17.3
33
* https://github.com/algolia/autocomplete.js
44
* Copyright 2016 Algolia, Inc. and other contributors; Licensed MIT
55
*/
@@ -72,8 +72,8 @@ return /******/ (function(modules) { // webpackBootstrap
7272

7373
var current$ = window.$;
7474
__webpack_require__(2);
75-
var zepto = window.$;
76-
window.$ = current$;
75+
var zepto = window.Zepto;
76+
window.$ = current$; // restore the `$` (we don't want Zepto here)
7777

7878
// setup DOM element
7979
var DOM = __webpack_require__(3);

dist/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
@@ -68,6 +68,6 @@
6868
"server": "grunt server",
6969
"test": "karma start --single-run && grunt lint"
7070
},
71-
"version": "0.17.2",
71+
"version": "0.17.3",
7272
"main": "index.js"
7373
}

0 commit comments

Comments
 (0)