diff options
author | Kohei Yoshino <kohei.yoshino@gmail.com> | 2018-06-26 21:11:54 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-06-26 21:11:54 +0200 |
commit | 5a8de6e08bf6f2c8dbc0f17662281314ae2cfc9b (patch) | |
tree | 9a663178ae12eb9fa1900514a33657510e58b57d /extensions/ProdCompSearch/web | |
parent | 7a61871a05c6e4e4df8313c4ba93143101cbb9be (diff) | |
download | bugzilla-5a8de6e08bf6f2c8dbc0f17662281314ae2cfc9b.tar.gz bugzilla-5a8de6e08bf6f2c8dbc0f17662281314ae2cfc9b.tar.xz |
Bug 1452096 - Some custom dropdown UI widgets stay fixed and don't move with scroll
Diffstat (limited to 'extensions/ProdCompSearch/web')
-rw-r--r-- | extensions/ProdCompSearch/web/js/prod_comp_search.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/extensions/ProdCompSearch/web/js/prod_comp_search.js b/extensions/ProdCompSearch/web/js/prod_comp_search.js index 1b7e396a8..30351a3db 100644 --- a/extensions/ProdCompSearch/web/js/prod_comp_search.js +++ b/extensions/ProdCompSearch/web/js/prod_comp_search.js @@ -66,6 +66,8 @@ $(function() { params.Bugzilla_api_token = BUGZILLA.api_token; } that.devbridgeAutocomplete({ + appendTo: $('#main-inner'), + forceFixPosition: true, serviceUrl: function(query) { return 'rest/prod_comp_search/' + encodeURIComponent(query); }, |