ng-model doesn't work like this : plunker link
I tried to alert ng-model="selectedFriend" and expect a pop-up of friend's name, but something is wrong when it's used within tab's content of angular bootstrap ui.
<select ng-model="friendsModel" ng-options="friend.name for friend in myFriends.friends.data">
<option value="">Select friend</option>
</select>
I suspect it was $scope issue because it work fine here plunker link