Skip to content

Instantly share code, notes, and snippets.

@kutanov
Created March 1, 2016 10:08
Show Gist options
  • Save kutanov/3754dc2f0b5e46ff3189 to your computer and use it in GitHub Desktop.
Save kutanov/3754dc2f0b5e46ff3189 to your computer and use it in GitHub Desktop.
app.directive("tree", ['ItemsService', function($compile) {
return {
restrict: "E",
scope: {
itemName: '='
},
controller: function($scope, ItemsService) {
var items = ItemsService[$scope.itemName].query();
}
}
}])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment