forked from verdnatura/hedera-web
19 lines
277 B
JavaScript
19 lines
277 B
JavaScript
|
Htk.Widget = new Class
|
||
|
({
|
||
|
Extends: Vn.Object
|
||
|
|
||
|
/** Main HTML node that represents the widget **/
|
||
|
,node: null
|
||
|
|
||
|
,createElement: function (tagName)
|
||
|
{
|
||
|
this.node = document.createElement (tagName);
|
||
|
return this.node;
|
||
|
}
|
||
|
|
||
|
,getNode: function ()
|
||
|
{
|
||
|
return this.node;
|
||
|
}
|
||
|
});
|