angular-gantt
Version:
Gantt chart component for AngularJS
16 lines (13 loc) • 492 B
JavaScript
(function(){
'use strict';
angular.module('gantt').directive('ganttVerticalScrollReceiver', function() {
// 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.registerVerticalReceiver(element);
}
};
});
}());