blob: e010cb36533e3ebc127f847e5d98236a33a7673f [file] [log] [blame]
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
}
}
}