16 lines
482 B
JavaScript
16 lines
482 B
JavaScript
angular.module('kityminderEditor')
|
|
.directive('arrange', ['commandBinder', function(commandBinder) {
|
|
return {
|
|
restrict: 'E',
|
|
templateUrl: 'ui/directive/arrange/arrange.html',
|
|
scope: {
|
|
minder: '='
|
|
},
|
|
replace: true,
|
|
link: function($scope) {
|
|
var minder = $scope.minder;
|
|
|
|
//commandBinder.bind(minder, 'priority', $scope);
|
|
}
|
|
}
|
|
}]); |