Skip to content

Commit ba8a037

Browse files
committed
Update bundle
1 parent c43fb25 commit ba8a037

7 files changed

+3644
-24
lines changed

dist/bloodhound.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
/*!
2-
* typeahead.js 1.2.0
3-
* https://github.com/twitter/typeahead.js
2+
* typeahead.js 1.2.1
3+
* https://github.com/corejavascript/typeahead.js
44
* Copyright 2013-2017 Twitter, Inc. and other contributors; Licensed MIT
55
*/
66

7+
78
(function(root, factory) {
89
if (typeof define === "function" && define.amd) {
910
define([ "jquery" ], function(a0) {
1011
return root["Bloodhound"] = factory(a0);
1112
});
12-
} else if (typeof exports === "object") {
13+
} else if (typeof module === "object" && module.exports) {
1314
module.exports = factory(require("jquery"));
1415
} else {
1516
root["Bloodhound"] = factory(root["jQuery"]);
@@ -158,7 +159,7 @@
158159
noop: function() {}
159160
};
160161
}();
161-
var VERSION = "1.2.0";
162+
var VERSION = "1.2.1";
162163
var tokenizers = function() {
163164
"use strict";
164165
return {

dist/bloodhound.min.js

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

dist/typeahead.bundle.js

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
/*!
2-
* typeahead.js 1.2.0
3-
* https://github.com/twitter/typeahead.js
2+
* typeahead.js 1.2.1
3+
* https://github.com/corejavascript/typeahead.js
44
* Copyright 2013-2017 Twitter, Inc. and other contributors; Licensed MIT
55
*/
66

7+
78
(function(root, factory) {
89
if (typeof define === "function" && define.amd) {
910
define([ "jquery" ], function(a0) {
1011
return root["Bloodhound"] = factory(a0);
1112
});
12-
} else if (typeof exports === "object") {
13+
} else if (typeof module === "object" && module.exports) {
1314
module.exports = factory(require("jquery"));
1415
} else {
1516
root["Bloodhound"] = factory(root["jQuery"]);
@@ -158,7 +159,7 @@
158159
noop: function() {}
159160
};
160161
}();
161-
var VERSION = "1.2.0";
162+
var VERSION = "1.2.1";
162163
var tokenizers = function() {
163164
"use strict";
164165
return {
@@ -956,7 +957,7 @@
956957
define([ "jquery" ], function(a0) {
957958
return factory(a0);
958959
});
959-
} else if (typeof exports === "object") {
960+
} else if (typeof module === "object" && module.exports) {
960961
module.exports = factory(require("jquery"));
961962
} else {
962963
factory(root["jQuery"]);
@@ -1149,7 +1150,9 @@
11491150
function buildSelectors(classes) {
11501151
var selectors = {};
11511152
_.each(classes, function(v, k) {
1152-
selectors[k] = "." + v;
1153+
selectors[k] = v.split(" ").map(function(className) {
1154+
return "." + className;
1155+
}).join();
11531156
});
11541157
return selectors;
11551158
}

dist/typeahead.bundle.min.js

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

dist/typeahead.jquery.js

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
/*!
2-
* typeahead.js 1.2.0
3-
* https://github.com/twitter/typeahead.js
2+
* typeahead.js 1.2.1
3+
* https://github.com/corejavascript/typeahead.js
44
* Copyright 2013-2017 Twitter, Inc. and other contributors; Licensed MIT
55
*/
66

7+
78
(function(root, factory) {
89
if (typeof define === "function" && define.amd) {
910
define([ "jquery" ], function(a0) {
1011
return factory(a0);
1112
});
12-
} else if (typeof exports === "object") {
13+
} else if (typeof module === "object" && module.exports) {
1314
module.exports = factory(require("jquery"));
1415
} else {
1516
factory(root["jQuery"]);
@@ -202,7 +203,9 @@
202203
function buildSelectors(classes) {
203204
var selectors = {};
204205
_.each(classes, function(v, k) {
205-
selectors[k] = "." + v;
206+
selectors[k] = v.split(" ").map(function(className) {
207+
return "." + className;
208+
}).join();
206209
});
207210
return selectors;
208211
}

dist/typeahead.jquery.min.js

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

0 commit comments

Comments
 (0)