Skip to content

Commit 8e1ddd0

Browse files
committed
v0.4.3 - require correct path to autocomplete for AMD
1 parent a0c04f9 commit 8e1ddd0

File tree

5 files changed

+19
-8
lines changed

5 files changed

+19
-8
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "knockout-jqAutocomplete",
3-
"version": "0.4.2",
3+
"version": "0.4.3",
44
"main": "build/knockout-jqAutocomplete.min.js",
55
"ignore": [
66
"examples",

build/knockout-jqAutocomplete.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
// knockout-jqAutocomplete 0.4.2 | (c) 2015 Ryan Niemeyer | http://www.opensource.org/licenses/mit-license
1+
// knockout-jqAutocomplete 0.4.3 | (c) 2015 Ryan Niemeyer | http://www.opensource.org/licenses/mit-license
22
;(function(factory) {
33
if (typeof define === "function" && define.amd) {
44
// AMD anonymous module
5-
define(["knockout", "jquery", "jquery.ui"], factory);
5+
define(["knockout", "jquery", "jquery-ui/autocomplete"], factory);
66
} else {
77
// No module loader - put directly in global namespace
88
factory(window.ko, jQuery);

build/knockout-jqAutocomplete.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: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
{
22
"name": "knockout-jqAutocomplete",
3-
"version": "0.4.2",
3+
"version": "0.4.3",
4+
"author": "Ryan Niemeyer",
5+
"repository": {
6+
"type": "git",
7+
"url": "git://github.com/rniemeyer/knockout-jqAutocomplete.git"
8+
},
49
"devDependencies": {
510
"grunt": "~0.4.1",
611
"grunt-contrib-uglify": "0.x.x",
@@ -10,5 +15,11 @@
1015
"grunt-contrib-jasmine": "0.x.x",
1116
"grunt-template-jasmine-istanbul": "0.x.x",
1217
"grunt-bower-task": "~0.3.4"
13-
}
18+
},
19+
"licenses": [
20+
{
21+
"type": "MIT",
22+
"url": "http://opensource.org/licenses/MIT"
23+
}
24+
]
1425
}

src/knockout-jqAutocomplete.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
;(function(factory) {
22
if (typeof define === "function" && define.amd) {
33
// AMD anonymous module
4-
define(["knockout", "jquery", "jquery.ui"], factory);
4+
define(["knockout", "jquery", "jquery-ui/autocomplete"], factory);
55
} else {
66
// No module loader - put directly in global namespace
77
factory(window.ko, jQuery);

0 commit comments

Comments
 (0)