expandLevel.directive.js 404 B

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