mirror of
https://github.com/openstf/stf
synced 2025-10-05 19:42:01 +02:00
11 lines
198 B
JavaScript
11 lines
198 B
JavaScript
module.exports = function badgeIconDirective() {
|
|
return {
|
|
restrict: 'EA',
|
|
replace: true,
|
|
scope: {
|
|
},
|
|
template: require('./badge-icon.jade'),
|
|
link: function() {
|
|
}
|
|
}
|
|
}
|