Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save adw0rd/c64268ed3d8859822922b696e4a9d32a to your computer and use it in GitHub Desktop.
Save adw0rd/c64268ed3d8859822922b696e4a9d32a to your computer and use it in GitHub Desktop.
$("#address").suggestions({
token: "5ef98f5781a106962077fb18109095f9f11ebac1",
type: "ADDRESS",
count: 20,
onSuggestionsFetch: function (suggestions) {
var items = [];
$.each(suggestions, function (i, item) {
if (item.value.indexOf('метро') != -1) {
items.splice(0, 0, item);
} else {
items.push(item);
}
});
return items.slice(0, 3); // нужное кол-во подсказок
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment