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.parent (props);
this.createElement ('div');
}
,putValue: function (value)
{
this.node.innerHTML = value;
}
});