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
You need to give an expression to ng-disabled, instead you are giving a string("true"/"false") which is always truthy and button is always disabled.
ng-disabled
isWaiting --> expression
isWaiting
{{isWaiting}} --> value of expression
{{isWaiting}}
In your case:
ng-disabled="isWaiting"