Angular Binding to non-native Attribute
One of the typical gotcha is that while using bootstrap with Angular, some of the bootstrap attributes can not be bound directly. Normally when you doing simple binding in Angular, this is what you do: <img md-card-image class=”img-responsive img-rounded” src=”{{user.profilePic}}” onerror=”this.style.display=’none'”> You bind the user.profilePic to attribute “src” of “img” element, which is fine. When…