Skip to content

Instantly share code, notes, and snippets.

@efogdev
Created January 20, 2017 14:09
Show Gist options
  • Save efogdev/a641cd6390caf59a5a1430c23131ea2c to your computer and use it in GitHub Desktop.
Save efogdev/a641cd6390caf59a5a1430c23131ea2c to your computer and use it in GitHub Desktop.
$scope.$watch('suggestions', function (value) {
if (value.length == 0) {
element.find('.autocomplete-suggestions').scrollTop(0);
}
});
$scope.$watch('selectedSuggestion', function (value) {
var suggestionHeight = (element
.find('.suggestion') || {})
.height();
element.find('.autocomplete-suggestions')
.scroll((value - 1) * suggestionHeight);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment