undoRedo.directive.js 343 B

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