mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-19 00:23:25 +02:00
12 lines
199 B
JavaScript
12 lines
199 B
JavaScript
module.exports = function badgeIconDirective() {
|
|
return {
|
|
restrict: 'EA',
|
|
replace: true,
|
|
scope: {
|
|
},
|
|
template: require('./badge-icon.jade'),
|
|
link: function () {
|
|
}
|
|
}
|
|
}
|