Files
stf-DeviceFarmer/res/app/components/stf/timelines/timelines-directive.js
2014-05-12 18:35:19 +09:00

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;
}
}
}