mirror of
https://github.com/openstf/stf
synced 2025-10-05 02:29:26 +02:00
13 lines
234 B
JavaScript
13 lines
234 B
JavaScript
require('./help-icon.css')
|
|
|
|
module.exports = function clearButtonDirective() {
|
|
return {
|
|
restrict: 'EA',
|
|
replace: true,
|
|
scope: {
|
|
topic: '@',
|
|
tooltip: '@'
|
|
},
|
|
template: require('./help-icon.jade')
|
|
}
|
|
}
|