I am using bootstrap.js along with angular js, my code is following-
//few lines from controller $scope.isWaiting = true; $scope.promise = $http.get(\"voluu
If you are using ng-disabled an expression must be used that returns a truthy value. An example of an expression is isWaiting. {{isWaiting}}will instead output an expression. So instead use ng-disabled="isWaiting".
ng-disabled
isWaiting
{{isWaiting}}
ng-disabled="isWaiting"
Report
ngDisabled documentation
Expressions documentation