1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-06 03:50:04 +02:00
OpenSTF/res/app/components/stf/timelines/timelines-directive.js
2014-05-12 18:35:19 +09:00

12 lines
314 B
JavaScript

module.exports = function timelinesDirective(Timelines) {
return {
restrict: 'AE',
replace: false,
scope: {},
template: require('./timelines.jade'),
link: function (scope) {
scope.cssPrefix = Timelines.options.cssPrefix;
scope.notifications = Timelines.notifications;
}
}
}