```js function directoriesLookup($scope, $q, $http...
# package-development
n
Copy code
js
function directoriesLookup($scope, $q, $http) {
   var vm = this;
   function init(){
     vm.property = resultOfSomething();
   }
   init();
}
But when I get to the
vm.property
line it says vm is undefined after all the bundling.