How to start using $q?

97 Views Asked by At

I've tried to inject $q in my controller like this:

app.controller('NodeCtrl', ['Tree', function(Tree, $scope, $element, $q) {

But, $q is not defined, how can I start using it? I am using Angular 1.4

1

There are 1 best solutions below

3
On BEST ANSWER

You need to inject it as well as add it to your argument list:

app.controller('NodeCtrl', ['Tree', '$scope', '$element', '$q', 
               function(Tree, $scope, $element, $q) {