I used loading in ng-repeat. Below code snippet for the same
<div class="useBootstrap col-sm-2" data-toggle="popover" data-container="body" data-content="AdditionalContents to be shown" data-trigger="click hover">
{{ row.FileName | limitTo: 15 }}{{row.FileName.length > 15 ? '...' : ''}}
</div>
I have a bootstrap version *! * Bootstrap v3.3.4 ( http://getbootstrap.com ) * Copyright 2011-2015 Twitter, Inc. in my application
If I include a lower version of bootstrap, this is excellent. The first image when you turn on 3.0, the 2nd image, if I use 3.3. How can I make it work in version 3.3 because I can’t change the bootsrap version in my application now just pop up for this.
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" />

source
share