CopyPastor

Detecting plagiarism made easy.

Score: 0.9487518424573151; Reported for: String similarity Open both answers

Possible Plagiarism

Plagiarized on 2019-10-30
by Kiran Mistry

Original Post

Original - Posted on 2018-02-18
by Melchia



            
Present in both answers; Present only in the new answer; Present only in the old answer;

The syntax is different in Ionic2/3. Here's how it should be:
<ion-content (ionScroll)="scrolling($event)" (ionScrollEnd)="scrollComplete($event)"> <ion-list> ... </ion-list> </ion-content>

then in your ts file
constructor(){} scrolling(event) { // your content here for scrolling } scrollComplete(event) { // your content here of scroll is finished } }
The syntax is different in Ionic2/3. Here's how it should be:
<ion-content (ionScroll)="scrolling($event)" (ionScrollEnd)="scrollComplete($event)"> <ion-list> ... </ion-list> </ion-content>
then in your ts file
``` constructor(){} scrolling(event) { // your content here for scrolling }
scrollComplete(event) { // your content here of scroll is finished } }

        
Present in both answers; Present only in the new answer; Present only in the old answer;