123456789101112131415 |
- angular.module('kityminderEditor')
- .directive('templateList', function() {
- return {
- restrict: 'E',
- templateUrl: 'ui/directive/templateList/templateList.html',
- scope: {
- minder: '='
- },
- replace: true,
- link: function($scope) {
- $scope.templateList = kityminder.Minder.getTemplateList();
- }
- }
- });
|