In my HTML file, I have a <progress> , and I also entered the ui.bootstrap value for my controller as follows:
var myApp = angular.module("myApp",["ui.bootstrap"]);
In this configuration, AngularJS converts <progress></progress> to:
<div class="progress ng-isolate-scope" ng-transclude=""></div>
When I remove "ui.bootstrap", it works fine. You can play this sample JSFiddle.
When progress turned into <div class="progress ng-isolate-scope" ng-transclude=""></div> it disappears. I understand that ui.bootstrap has a directive called progress that does this conversion.
So how can I make this work indicator work? Or, how can I disable the progress angular -ui directive without removing the dependencies?
Thanks in advance.
angularjs angularjs-directive progress angular-ui-bootstrap
ankakusu
source share