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 a868c3a commit 5735a01Copy full SHA for 5735a01
nativescript-angular/view-util.ts
@@ -41,7 +41,11 @@ export class ViewUtil {
41
const extendedParent = this.ensureNgViewExtensions(parent);
42
const extendedChild = this.ensureNgViewExtensions(child);
43
44
- if (!previous) {
+ // the element should be between previous and next
45
+ // if there's next but no previous, it's the first element
46
+ // if there's previous but no next, it's the last element
47
+ // elements that have no previous/next elements must be appended
48
+ if (!previous && !next) {
49
previous = extendedParent.lastChild;
50
}
51
this.addToQueue(extendedParent, extendedChild, previous, next);
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments