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

18 lines
231 B
JavaScript

module.exports = new Class
({
Extends: Htk.Field
,Tag: 'htk-html'
,initialize: function (props)
{
this.createElement ('div');
this.parent (props);
}
,putValue: function (value)
{
this.node.innerHTML = value;
}
});