Adding logcat table.

This commit is contained in:
Gunther Brunner
2014-05-13 12:22:14 +09:00
parent ed2390592c
commit 40cdb09528
6 changed files with 48 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
module.exports = function logcatTableDirective() {
return {
restrict: 'E',
replace: true,
scope: {
},
template: require('./logcat-table.jade'),
link: function (scope, element, attrs) {
}
}
}