Chris Gross

Results 72 comments of Chris Gross

You want a template to show when the promise fails? There's no feature for that. As for an active flag, are you talking about in the view meaning the busy...

I'm interested to understand the use-case for showing a template when the promise fails? Are you trying to show the user the error? Wouldn't you want to show them the...

If you are using a regular promise chain then just assign the promise from the last then() to cg-busy like: ``` js $scope.myBusyPromise = $http(...).then(function(data){ ... }).then(function(data){ ... }).then(function(data){ ......

If they're all-at-once instead of in-a-row then just use $q.all()

Hmm. I don't think there's a solution to injecting twice in the same file currently. Sorry.

Yes. Sometime soon.

Sure. Feel free to override the styles on `.cg-notify-message`. ``` css -webkit-transition: top 0.5s ease-out,opacity 0.2s ease-out; -moz-transition: top 0.5s ease-out,opacity 0.2s ease-out; -o-transition: top 0.5s ease-out,opacity 0.2s ease-out; transition:...

Sure. If you can work support for showing notifications on the bottom that would be nice. Thanks.

Honestly I haven't used it with the mobile browsers often though I have tested it from time to time and it always worked. If you find the issue please submit...

After I merged your PR, I did change the order a bit. Reads are always first, then removes, then all other modification actions. I did it this way so a...