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