Merge remote-tracking branch 'origin/master' into next
This commit is contained in:
commit
3e7690c5fc
1 changed files with 2 additions and 1 deletions
|
|
@ -29,7 +29,8 @@ Mithril = m = new function app(window, undefined) {
|
|||
return cell
|
||||
}
|
||||
function build(parentElement, parentTag, parentCache, parentIndex, data, cached, shouldReattach, index, editable, namespace, configs) {
|
||||
if (data === null || data === undefined) data = ""
|
||||
if (data === undefined) return undefined
|
||||
if (data === null) data = ""
|
||||
if (data.subtree === "retain") return cached
|
||||
|
||||
var cachedType = type.call(cached), dataType = type.call(data)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue