Skip to content

Commit

Permalink
Bump version and build
Browse files Browse the repository at this point in the history
  • Loading branch information
truckingsim committed Apr 23, 2019
1 parent 95cd363 commit e33d67f
Show file tree
Hide file tree
Showing 41 changed files with 335 additions and 101 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ $('.select-picker')
***
## License
Copyright (c) 2018 Adam Heim, contributors.
Copyright (c) 2019 Adam Heim, contributors.
Released under the MIT license
[Bootstrap 3.2.0+]: http://getbootstrap.com/getting-started/#download
Expand Down

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions api-docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<link rel="stylesheet" href="styles-3eba09980fa05ead185cb17d9c0deb0f.css" type="text/css" />

<script type="text/javascript" src="extjs/ext-all.js"></script>
<script type="text/javascript" src="data-2f7895762948544c8c6c9971c81c14dd.js"></script>
<script type="text/javascript" src="data-ef0fec16cdf7d94ea5c404ce8aa2b340.js"></script>

<script type="text/javascript" src="app-0c945a27f43452df695771ddb60b3d14.js"></script>

Expand Down Expand Up @@ -53,7 +53,7 @@ <h3>Classes</h3>



<div id='footer-content' style='display: none'>Generated on Tue 12 Jun 2018 11:53:58 by <a href='https://github.com/senchalabs/jsduck'>JSDuck</a> 5.3.4.</div>
<div id='footer-content' style='display: none'>Generated on Tue 23 Apr 2019 12:18:55 by <a href='https://github.com/senchalabs/jsduck'>JSDuck</a> 5.3.4.</div>



Expand Down
2 changes: 1 addition & 1 deletion api-docs/output/$.fn.ajaxSelectPicker.defaults.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion api-docs/output/$.fn.ajaxSelectPicker.locale.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api-docs/output/AjaxBootstrapSelect.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ajax-bootstrap-select",
"version": "1.4.4",
"version": "1.4.5",
"description": "Extends existing [Bootstrap Select] implementations by adding the ability to search via AJAX requests as you type. Originally for CROSCON.",
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions dist/css/ajax-bootstrap-select.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
*
* Extends existing [Bootstrap Select] implementations by adding the ability to search via AJAX requests as you type. Originally for CROSCON.
*
* @version 1.4.4
* @version 1.4.5
* @author Adam Heim - https://github.com/truckingsim
* @link https://github.com/truckingsim/Ajax-Bootstrap-Select
* @copyright 2018 Adam Heim
* @copyright 2019 Adam Heim
* @license Released under the MIT license.
*
* Contributors:
* Mark Carver - https://github.com/markcarver
*
* Last build: 2018-06-12 11:53:58 AM EDT
* Last build: 2019-04-23 12:18:56 PM EDT
*/
.bootstrap-select .status {
background: #f0f0f0;
Expand Down
6 changes: 3 additions & 3 deletions dist/css/ajax-bootstrap-select.min.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
*
* Extends existing [Bootstrap Select] implementations by adding the ability to search via AJAX requests as you type. Originally for CROSCON.
*
* @version 1.4.4
* @version 1.4.5
* @author Adam Heim - https://github.com/truckingsim
* @link https://github.com/truckingsim/Ajax-Bootstrap-Select
* @copyright 2018 Adam Heim
* @copyright 2019 Adam Heim
* @license Released under the MIT license.
*
* Contributors:
* Mark Carver - https://github.com/markcarver
*
* Last build: 2018-06-12 11:53:58 AM EDT
* Last build: 2019-04-23 12:18:56 PM EDT
*/.bootstrap-select .status{background:#f0f0f0;clear:both;color:#999;font-size:11px;font-style:italic;font-weight:500;line-height:1;margin-bottom:-5px;padding:10px 20px}
18 changes: 9 additions & 9 deletions dist/js/ajax-bootstrap-select.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
*
* Extends existing [Bootstrap Select] implementations by adding the ability to search via AJAX requests as you type. Originally for CROSCON.
*
* @version 1.4.4
* @version 1.4.5
* @author Adam Heim - https://github.com/truckingsim
* @link https://github.com/truckingsim/Ajax-Bootstrap-Select
* @copyright 2018 Adam Heim
* @copyright 2019 Adam Heim
* @license Released under the MIT license.
*
* Contributors:
* Mark Carver - https://github.com/markcarver
*
* Last build: 2018-06-12 11:53:57 AM EDT
* Last build: 2019-04-23 12:18:55 PM EDT
*/
!(function ($, window) {

Expand Down Expand Up @@ -330,12 +330,6 @@ AjaxBootstrapSelect.prototype.init = function () {
plugin.log(plugin.LOG_DEBUG, 'Key ignored.');
return;
}

// Don't process if below minimum query length
if (query.length < plugin.options.minLength) {
plugin.list.setStatus(plugin.t('statusTooShort'));
return;
}

// Clear out any existing timer.
clearTimeout(requestDelayTimer);
Expand All @@ -353,6 +347,12 @@ AjaxBootstrapSelect.prototype.init = function () {
}
}

// Don't process if below minimum query length
if (query.length < plugin.options.minLength) {
plugin.list.setStatus(plugin.t('statusTooShort'));
return;
}

// Store the query.
plugin.previousQuery = plugin.query;
plugin.query = query;
Expand Down
8 changes: 4 additions & 4 deletions dist/js/ajax-bootstrap-select.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit e33d67f

Please sign in to comment.