styleOperator.directive.js 239 B

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