Files
stf-DeviceFarmer/res/app/components/stf/timelines/timelines-directive.js
2016-01-19 23:08:33 +09:00

13 lines
311 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
}
}
}