angular-gantt
Version:
Gantt chart component for AngularJS
13 lines (11 loc) • 349 B
text/typescript
export default function () {
'ngInject'
// The element with this attribute will scroll at the same time as the scrollSender element
return {
restrict: 'A',
require: '^ganttScrollManager',
link: function (scope, element, attrs, ganttScrollManagerCtrl) {
ganttScrollManagerCtrl.registerHorizontalReceiver(element)
}
}
}