2
0
mirror of https://github.com/devbridge/jQuery-Autocomplete.git synced 2024-11-25 14:17:45 +00:00

Rev for 1.2.17 release

This commit is contained in:
Tomas Kirda 2015-03-04 10:52:04 -06:00
parent 8e6812d603
commit 06fe840666
6 changed files with 20 additions and 14 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "devbridge-autocomplete", "name": "devbridge-autocomplete",
"version": "1.2.16", "version": "1.2.17",
"homepage": "https://github.com/devbridge/jQuery-Autocomplete", "homepage": "https://github.com/devbridge/jQuery-Autocomplete",
"authors": [ "authors": [
"Tomas Kirda" "Tomas Kirda"

View File

@ -6,7 +6,7 @@
"ajax", "ajax",
"autocomplete" "autocomplete"
], ],
"version": "1.2.16", "version": "1.2.17",
"author": { "author": {
"name": "Tomas Kirda", "name": "Tomas Kirda",
"url": "https://github.com/tkirda" "url": "https://github.com/tkirda"

View File

@ -1,6 +1,6 @@
/** /**
* Ajax Autocomplete for jQuery, version 1.2.16 * Ajax Autocomplete for jQuery, version 1.2.17
* (c) 2014 Tomas Kirda * (c) 2015 Tomas Kirda
* *
* Ajax Autocomplete for jQuery is freely distributable under the terms of an MIT-style license. * Ajax Autocomplete for jQuery is freely distributable under the terms of an MIT-style license.
* For details, see the web site: https://github.com/devbridge/jQuery-Autocomplete * For details, see the web site: https://github.com/devbridge/jQuery-Autocomplete
@ -612,7 +612,13 @@
}, },
hide: function () { hide: function () {
var that = this; var that = this,
container = $(that.suggestionsContainer);
if ($.isFunction(that.options.onHide) && that.visible) {
that.options.onHide.call(that.element, container);
}
that.visible = false; that.visible = false;
that.selectedIndex = -1; that.selectedIndex = -1;
clearInterval(that.onChangeInterval); clearInterval(that.onChangeInterval);
@ -622,11 +628,11 @@
suggest: function () { suggest: function () {
if (this.suggestions.length === 0) { if (this.suggestions.length === 0) {
if (this.options.showNoSuggestionNotice) { if (this.options.showNoSuggestionNotice) {
this.noSuggestions(); this.noSuggestions();
} else { } else {
this.hide(); this.hide();
} }
return; return;
} }

File diff suppressed because one or more lines are too long

View File

@ -32,7 +32,7 @@ module.exports = function(grunt) {
grunt.registerTask('default', ['uglify']); grunt.registerTask('default', ['uglify']);
grunt.task.registerTask('build', 'Create release', function() { grunt.task.registerTask('build', 'Create release', function() {
var version = pkg.version var version = pkg.version,
src = grunt.file.read('src/jquery.autocomplete.js').replace('%version%', version), src = grunt.file.read('src/jquery.autocomplete.js').replace('%version%', version),
filePath = 'dist/jquery.autocomplete.js'; filePath = 'dist/jquery.autocomplete.js';

View File

@ -1,6 +1,6 @@
{ {
"name": "devbridge-autocomplete", "name": "devbridge-autocomplete",
"version": "1.2.16", "version": "1.2.17",
"description": "Autocomplete provides suggestions while you type into the text field.", "description": "Autocomplete provides suggestions while you type into the text field.",
"homepage": "https://github.com/devbridge/jQuery-Autocomplete", "homepage": "https://github.com/devbridge/jQuery-Autocomplete",
"author": "Tomas Kirda (https://twitter.com/tkirda)", "author": "Tomas Kirda (https://twitter.com/tkirda)",