You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 10, 2022. It is now read-only.
The position property value is not being passed to the positioner (position is always set to 'absolute' despite being set as 'fixed' in the configuration object).
As a temporal fix is possible to use in the implementation:
var autocomplete = new ch.Autocomplete(settings.$searchInput, { 'position': 'fixed' });
autocomplete.on('ready', function (e){
this._popover.$container.css('position', this._options.position);
});
The text was updated successfully, but these errors were encountered:
The position property value is not being passed to the positioner (position is always set to 'absolute' despite being set as 'fixed' in the configuration object).
As a temporal fix is possible to use in the implementation:
var autocomplete = new ch.Autocomplete(settings.$searchInput, { 'position': 'fixed' });
autocomplete.on('ready', function (e){
this._popover.$container.css('position', this._options.position);
});
The text was updated successfully, but these errors were encountered: