Commit 4d716b76 authored by Phil Hughes's avatar Phil Hughes

Underscore variable to camelCase

parent b1b32bfc
......@@ -53,9 +53,8 @@
if (this.options.remote) {
clearTimeout(timeout);
return timeout = setTimeout(function() {
var blur_field;
blur_field = this.shouldBlur(keyCode);
if (blur_field && this.filterInputBlur) {
var blurField = this.shouldBlur(keyCode);
if (blurField && this.filterInputBlur) {
this.input.blur();
}
return this.options.query(this.input.val(), function(data) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment