hedera-web/web/js/htk/field/html.js

17 lines
224 B
JavaScript
Raw Normal View History

2015-03-09 08:36:54 +00:00
Htk.Html = new Class
({
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;
}
});