1
1
mirror of https://github.com/github/semantic.git synced 2024-11-25 11:04:00 +03:00

Assign text content out to the DOM node.

This commit is contained in:
Rob Rix 2015-10-21 17:00:11 -04:00
parent 23fbde27a2
commit b6ac8a87ee

View File

@ -125,6 +125,9 @@
if (model instanceof Leaf) {
element = document.createElement("span");
if (model.textContent != null) {
element.textContent = model.textContent;
}
// ?
}