App created during angularjs bootcamp.

note.js 185B

12345678910
  1. (function () {
  2. angular.module('bootcampApp')
  3. .directive('note', function(){
  4. return {
  5. templateUrl: 'partials/note.html',
  6. restrict: 'E'
  7. };
  8. });
  9. })();