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:
parent
23fbde27a2
commit
b6ac8a87ee
@ -125,6 +125,9 @@
|
||||
|
||||
if (model instanceof Leaf) {
|
||||
element = document.createElement("span");
|
||||
if (model.textContent != null) {
|
||||
element.textContent = model.textContent;
|
||||
}
|
||||
// ?
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user