templateList.directive.js 334 B

123456789101112131415
  1. angular.module('kityminderEditor')
  2. .directive('templateList', function() {
  3. return {
  4. restrict: 'E',
  5. templateUrl: 'ui/directive/templateList/templateList.html',
  6. scope: {
  7. minder: '='
  8. },
  9. replace: true,
  10. link: function($scope) {
  11. $scope.templateList = kityminder.Minder.getTemplateList();
  12. }
  13. }
  14. });