angular-gantt
Version:
Gantt chart component for AngularJS
19 lines (12 loc) • 544 B
text/typescript
import angular from 'angular'
import ganttModule from '../../index'
import sectionsDirective from './sections.directive'
import taskSectionDirective from './taskSection.directive'
import taskSectionsDirective from './taskSections.directive'
const pluginModule = 'gantt.sections'
require('./sections.css')
angular.module(pluginModule, [ganttModule])
.directive('ganttSections', sectionsDirective)
.directive('ganttTaskSection', taskSectionDirective)
.directive('ganttTaskSections', taskSectionsDirective)
export default pluginModule