- Tabs are nice now.

This commit is contained in:
Gunther Brunner
2014-03-27 20:03:22 +09:00
parent 648c58d96b
commit 3c8efab212
11 changed files with 166 additions and 19 deletions

View File

@@ -0,0 +1,14 @@
// Declarative syntax not implemented yet
module.exports = function niceTabDirective() {
return {
restrict: 'E',
replace: true,
scope: {
},
template: require('./nice-tab.jade'),
link: function (scope, element, attrs) {
}
}
}