We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dc59ab commit 9a57ae6Copy full SHA for 9a57ae6
elements/hbox.js
@@ -243,9 +243,11 @@ apf.vbox = function(struct, tagName){
243
else {
244
var isLast = isLastVisibleChild(this);
245
if (!isLast) {
246
- this.parentNode.insertBefore(
247
- this.ownerDocument.createElementNS(apf.ns.aml, "splitter"),
248
- this.nextSibling);
+ if (!this.nextSibling.$splitter) {
+ this.parentNode.insertBefore(
+ this.ownerDocument.createElementNS(apf.ns.aml, "splitter"),
249
+ this.nextSibling);
250
+ }
251
}
252
else if (this.previousSibling && !this.previousSibling.$splitter) {
253
this.parentNode.insertBefore(
0 commit comments