1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-07 20:44:23 +00:00
TiddlyWiki5/core/modules/treenodes/text.js

44 lines
831 B
JavaScript

/*\
title: $:/core/modules/treenodes/text.js
type: application/javascript
module-type: treenode
Text nodes
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
var Node = require("./node.js").Node;
var Text = function(text) {
if(this instanceof Text) {
this.text = text;
} else {
return new Text(text);
}
};
Text.prototype = new Node();
Text.prototype.constructor = Text;
Text.prototype.render = function(type) {
return type === "text/html" ? $tw.utils.htmlEncode(this.text) : this.text;
};
Text.prototype.renderInDom = function(parentDomNode,insertBefore) {
this.domNode = document.createTextNode(this.text);
if(insertBefore) {
parentDomNode.insertBefore(this.domNode,insertBefore);
} else {
parentDomNode.appendChild(this.domNode);
}
};
exports.Text = Text;
})();