23 lines
311 B
JavaScript
23 lines
311 B
JavaScript
|
|
||
|
module.exports = new Class
|
||
|
({
|
||
|
Extends: Vn.Component
|
||
|
,Tag: 'htk-step'
|
||
|
,Properties:
|
||
|
{
|
||
|
name: {
|
||
|
type: String
|
||
|
,value: null
|
||
|
}
|
||
|
}
|
||
|
|
||
|
,appendChild: function (child)
|
||
|
{
|
||
|
this._node.appendChild (child);
|
||
|
}
|
||
|
,render: function ()
|
||
|
{
|
||
|
var node = this.createRoot ('div');
|
||
|
node.className = 'htk-step';
|
||
|
}
|
||
|
});
|