Created
October 8, 2014 18:19
-
-
Save vienhoang/d19e9f4345a5f60443a2 to your computer and use it in GitHub Desktop.
Angular: Custom element directive
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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