Skip to content

Instantly share code, notes, and snippets.

@vienhoang
Created October 8, 2014 18:19
Show Gist options
  • Save vienhoang/d19e9f4345a5f60443a2 to your computer and use it in GitHub Desktop.
Save vienhoang/d19e9f4345a5f60443a2 to your computer and use it in GitHub Desktop.
Angular: Custom element directive
// Custem element directive
app.directive("productDescription", function(){
return {
restrict: 'E',
templateUrl: 'product-description.html'
};
});
---
In HTML
<product-description></product-description>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment