mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 08:03:30 +02:00
14 lines
234 B
JavaScript
14 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')
|
|
}
|
|
}
|