bansho/app/components/directive/actionbar/component_more/more.js

14 lines
401 B
JavaScript

'use strict';
angular.module('bansho.actionbar')
.directive('banshoActionbarMore', [function () {
return {
restrict: 'E',
scope: {
'tableId': '='
},
templateUrl: 'components/directive/actionbar/component_more/more.html',
controller: ['$scope', 'datasource', function ($scope, datasource) {}]
};
}]);