We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I found there is a difference between npm and cdn source codes in v2.2.5.
[npm v2.2.5]
EditableSelectUtility.prototype.initializeInput = function () { var that = this; switch (this.es.options.trigger) { default: case 'focus': that.es.$input .on('focus', $.proxy(that.es.show, that.es)) .on('blur', $.proxy(that.es.hide, that.es)); break; case 'manual': break; }
[cdn v2.2.5]
EditableSelectUtility.prototype.initializeInput = function () { var that = this; switch (this.es.options.trigger) { default: case 'focus': that.es.$input .on('focus', $.proxy(that.es.show, that.es)) .on("blur", $.proxy(function() { if ($(".es-list:hover").length === 0) { that.es.hide(); } else { this.$input.focus(); } }, that.es )); break; case 'manual': break; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I found there is a difference between npm and cdn source codes in v2.2.5.
[npm v2.2.5]
[cdn v2.2.5]
The text was updated successfully, but these errors were encountered: