mirror of
https://github.com/openstf/stf
synced 2025-10-06 03:50:04 +02:00
12 lines
314 B
JavaScript
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;
|
|
}
|
|
}
|
|
}
|