mirror of
https://github.com/openstf/stf
synced 2025-10-05 10:39:25 +02:00
13 lines
225 B
JavaScript
13 lines
225 B
JavaScript
module.exports = function logcatTableDirective() {
|
|
return {
|
|
restrict: 'E',
|
|
replace: true,
|
|
scope: {
|
|
|
|
},
|
|
template: require('./logcat-table.jade'),
|
|
link: function (scope, element, attrs) {
|
|
|
|
}
|
|
}
|
|
}
|