2
0
mirror of https://github.com/devbridge/jQuery-Autocomplete.git synced 2024-12-23 03:18:55 +00:00

Update default options

This commit is contained in:
Tomas Kirda 2012-12-19 12:16:25 -06:00
parent 196fa6b0c0
commit a53b1cd759

View File

@ -51,18 +51,20 @@
function Autocomplete(el, options) {
var that = this,
defaults = {
serviceUrl: null,
lookup: null,
onSelect: null,
width: 'auto',
minChars: 1,
maxHeight: 300,
deferRequestBy: 0,
width: 0,
highlight: true,
params: {},
formatResult: Autocomplete.formatResult,
delimiter: null,
zIndex: 9999,
type: 'GET',
noCache: false,
enforce: false
enforce: false,
};
// Shared variables:
@ -175,7 +177,7 @@
// Adjust height, width and z-index:
$(this.suggestionsContainer).css({
'max-height': options.maxHeight + 'px',
'width': options.width,
'width': options.width + 'px',
'z-index': options.zIndex
});
},