mirror of
https://github.com/openstf/stf
synced 2025-10-04 18:29:17 +02:00
14 lines
259 B
JavaScript
14 lines
259 B
JavaScript
// 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) {
|
|
|
|
}
|
|
}
|
|
}
|