nw-card.js 277 B

12345678910
  1. angular.module("noteWrangler")
  2. .directive('nwCard', function () {
  3. return {
  4. retrict: "E", // "E" is for Element.
  5. templateUrl: "templates/directives/nw-card.html",
  6. controller: function ($scope) {
  7. $scope.header = "Note title";
  8. },
  9. }
  10. });