mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 08:13:31 +02:00
13 lines
314 B
JavaScript
13 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;
|
|
}
|
|
}
|
|
}
|