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

15 lines
171 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'
2022-11-16 01:46:44 +00:00
,render() {
2022-05-24 10:18:44 +00:00
this.createRoot('div');
2015-03-09 08:36:54 +00:00
}
2022-11-16 01:46:44 +00:00
,putValue(value) {
2015-03-09 08:36:54 +00:00
this.node.innerHTML = value;
}
});