File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -355,6 +355,7 @@ export function initNavbar (neonView: NeonView): void {
355
355
attrValue : ''
356
356
}
357
357
} ) ;
358
+ param . push ( ...addSylAction ( [ syllable , precedesSyllable ] ) ) ;
358
359
}
359
360
else if ( precedesSyllable . getAttribute ( 'follows' ) != '#' + syllable . getAttribute ( 'xml:id' ) ) {
360
361
hasInvalidSyllables = true ;
@@ -374,8 +375,8 @@ export function initNavbar (neonView: NeonView): void {
374
375
attrValue : ''
375
376
}
376
377
} ) ;
378
+ param . push ( ...addSylAction ( [ syllable , precedesSyllable ] ) ) ;
377
379
}
378
- param . push ( ...addSylAction ( [ syllable , precedesSyllable ] ) ) ;
379
380
}
380
381
else if ( syllable . hasAttribute ( 'follows' ) ) {
381
382
const followsSyllable = syllables . find ( element => element . getAttribute ( 'xml:id' ) === syllable . getAttribute ( 'follows' ) . substring ( 1 ) ) ;
@@ -389,6 +390,7 @@ export function initNavbar (neonView: NeonView): void {
389
390
attrValue : ''
390
391
}
391
392
} ) ;
393
+ param . push ( ...addSylAction ( [ syllable , followsSyllable ] ) ) ;
392
394
}
393
395
else if ( followsSyllable . getAttribute ( 'precedes' ) != '#' + syllable . getAttribute ( 'xml:id' ) ) {
394
396
hasInvalidSyllables = true ;
@@ -408,8 +410,8 @@ export function initNavbar (neonView: NeonView): void {
408
410
attrValue : ''
409
411
}
410
412
} ) ;
413
+ param . push ( ...addSylAction ( [ syllable , followsSyllable ] ) ) ;
411
414
}
412
- param . push ( ...addSylAction ( [ syllable , followsSyllable ] ) ) ;
413
415
}
414
416
}
415
417
You can’t perform that action at this time.
0 commit comments