arrange.directive.js 482 B

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