layout.directive.js 252 B

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