add autocompletion on popup category field

This commit is contained in:
Julien Veyssier 2019-03-30 14:51:11 +01:00
Родитель 2a0406bd5d
Коммит f4328b813f
2 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -239,3 +239,6 @@ table.editFavorite input[type=text] {
.category-line > a {
opacity: 1 !important;
}
.ui-autocomplete {
z-index: 10000 !important;
}

Просмотреть файл

@ -543,6 +543,11 @@ FavoritesController.prototype = {
var popupContent = this._map.favoritesController.getFavoritePopupContent(fav);
e.target.bindPopup(popupContent, {closeOnClick: false});
e.target.openPopup();
// add completion to category field
var catList = Object.keys(this._map.favoritesController.categoryLayers);
$('input[role="category"]').autocomplete({
source: catList
});
},
getFavoritePopupContent: function(fav) {