How can you scroll to the bottom of a modal? I'm using angular-ui bootstrap. Plunkr
I've tried: (per this question)
var ele = $('.modal-dialog')
ele.scrollTop = ele.scrollHeight
and also (per this question)
$('#modal').animate({ scrollTop: $('#modal .modal-dialog').height() }, 500);