0
1
Fork 0
hedera-web-mindshore/js/htk/node-builder.js

27 lines
352 B
JavaScript
Raw Normal View History

2016-10-16 14:16:08 +00:00
module.exports = new Class
({
Extends: Vn.Object
,doc: null
,initialize: function (props)
{
this.doc = document;
this.parent (props);
}
,createElement: function (tagName)
{
return document.createElement (tagName);
}
,createTextNode: function (text)
{
return document.createTextNode (text);
}
,render: function () {}
});