|
@@ -92,7 +92,8 @@
|
|
|
showOnFocus: false,
|
|
showOnFocus: false,
|
|
|
minLength: 0,
|
|
minLength: 0,
|
|
|
limitWidthToInput: false,
|
|
limitWidthToInput: false,
|
|
|
- minWidth: 200
|
|
|
|
|
|
|
+ minWidth: 200,
|
|
|
|
|
+ disabled: true
|
|
|
}, options);
|
|
}, options);
|
|
|
|
|
|
|
|
if (options.addCount) {
|
|
if (options.addCount) {
|
|
@@ -226,6 +227,11 @@
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
$element.hueAutocomplete(options);
|
|
$element.hueAutocomplete(options);
|
|
|
|
|
+
|
|
|
|
|
+ // IE 11 trick to prevent it from being shown on page refresh
|
|
|
|
|
+ window.setTimeout(function () {
|
|
|
|
|
+ $element.hueAutocomplete("option", "disabled", false);
|
|
|
|
|
+ }, 1000);
|
|
|
}
|
|
}
|
|
|
};
|
|
};
|
|
|
|
|
|