Started adding a badge-icon directive.

This commit is contained in:
Gunther Brunner
2014-07-16 18:12:12 +09:00
parent dd5b04998d
commit 0f0cc56c41
7 changed files with 59 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
module.exports = function badgeIconDirective() {
return {
restrict: 'EA',
replace: true,
scope: {
},
template: require('./badge-icon.jade'),
link: function (scope, element, attrs) {
}
}
}