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

Return an element for leaves.

This commit is contained in:
Rob Rix 2015-10-21 16:32:21 -04:00
parent 86467ff4f4
commit 25e9054d06

View File

@ -98,6 +98,12 @@
}
return element;
}
if (model.syntax instanceof Leaf) {
var element = document.createElement("span");
// ?
return element;
}
}
function patch(patch, a, b) {