Skip to content

Instantly share code, notes, and snippets.

@pcote
Created August 7, 2016 13:51
Show Gist options
  • Select an option

  • Save pcote/ffa8753a540299ab89052bddfdccadbf to your computer and use it in GitHub Desktop.

Select an option

Save pcote/ffa8753a540299ab89052bddfdccadbf to your computer and use it in GitHub Desktop.
Example directive from AptPackageShow Project
var apsSearchResults = function(){
var d = {};
d.restrict = "E";
d.scope = {
results: "="
};
d.templateUrl = "searchresults/searchresults.html";
d.controller = "searchResultsController";
d.controllerAs = "src";
return d;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment