2016-09-26 09:28:47 +00:00
|
|
|
|
|
|
|
module.exports = new Class
|
2015-03-09 08:36:54 +00:00
|
|
|
({
|
|
|
|
Extends: Htk.Field
|
|
|
|
,Tag: 'htk-html'
|
|
|
|
|
|
|
|
,initialize: function (props)
|
|
|
|
{
|
|
|
|
this.createElement ('div');
|
2015-11-09 08:14:33 +00:00
|
|
|
this.parent (props);
|
2015-03-09 08:36:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
,putValue: function (value)
|
|
|
|
{
|
|
|
|
this.node.innerHTML = value;
|
|
|
|
}
|
|
|
|
});
|