fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
canvas: data method extracted to DocumentElement for exposure in DocumentTextElement
[fnpeditor.git]
/
src
/
smartxml
/
smartxml.js
diff --git
a/src/smartxml/smartxml.js
b/src/smartxml/smartxml.js
index
cfe94f0
..
e3c831d
100644
(file)
--- a/
src/smartxml/smartxml.js
+++ b/
src/smartxml/smartxml.js
@@
-274,8
+274,10
@@
$.extend(ElementNode.prototype, {
insertAtIndex: function(nativeNode, index) {
var contents = this.contents();
insertAtIndex: function(nativeNode, index) {
var contents = this.contents();
- if(
contents[index]
) {
+ if(
index < contents.length
) {
return contents[index].before(nativeNode);
return contents[index].before(nativeNode);
+ } else if(index === contents.length) {
+ return this.append(nativeNode);
}
},
}
},