0
1
Fork 0
hedera-web-mindshore/js/htk/field/html.js

17 lines
196 B
JavaScript
Raw Normal View History

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'
2016-10-16 14:16:08 +00:00
,render: function ()
2015-03-09 08:36:54 +00:00
{
2016-10-16 14:16:08 +00:00
this.createRoot ('div');
2015-03-09 08:36:54 +00:00
}
,putValue: function (value)
{
this.node.innerHTML = value;
}
});