2
0
mirror of https://github.com/devbridge/jQuery-Autocomplete.git synced 2024-11-09 23:01:00 +00:00

Minor formating changes

This commit is contained in:
Tomas Kirda 2012-11-08 16:07:53 -06:00
parent dec9dc298e
commit adfae28573

View File

@ -86,18 +86,23 @@
}
};
if (!this.options.width) { this.options.width = this.el.width(); }
if (!this.options.width) {
this.options.width = this.el.width();
}
this.mainContainerId = 'AutocompleteContainter_' + uid;
$('<div id="' + this.mainContainerId + '" style="position:absolute;z-index:9999;"><div class="autocomplete-w1"><div class="autocomplete" id="' + autocompleteElId + '" style="display:none; width:300px;"></div></div></div>').appendTo('body');
this.container = $('#' + autocompleteElId);
this.fixPosition();
if (window.opera) {
this.el.keypress(function (e) { me.onKeyPress(e); });
this.el.keypress(me.onKeyPresse);
} else {
this.el.keydown(function (e) { me.onKeyPress(e); });
this.el.keydown(me.onKeyPress);
}
this.el.keyup(function (e) { me.onKeyUp(e); });
this.el.blur(function () { me.enableKillerFn(); });
this.el.focus(function () { me.fixPosition(); });