Update: Big Perf improvement for IE (fixes #199)
This commit is contained in:
parent
5d2b6ea2b7
commit
d451def561
1 changed files with 4 additions and 1 deletions
|
|
@ -861,6 +861,9 @@
|
|||
// set attributes first, then create children
|
||||
var attrs = constructAttrs(data, node, namespace, hasKeys)
|
||||
|
||||
// add the node to its parent before attaching children to it
|
||||
insertNode(parentElement, node, index)
|
||||
|
||||
var children = constructChildren(data, node, cached, editable,
|
||||
namespace, configs)
|
||||
|
||||
|
|
@ -884,7 +887,7 @@
|
|||
controllers)
|
||||
}
|
||||
|
||||
if (isNew || shouldReattach === true && node != null) {
|
||||
if (!isNew && shouldReattach === true && node != null) {
|
||||
insertNode(parentElement, node, index)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue