Skip to content

Instantly share code, notes, and snippets.

@mateusduraes
Created January 9, 2020 17:17
Show Gist options
  • Save mateusduraes/59f2f87398c31f1afae59b438c781b0c to your computer and use it in GitHub Desktop.
Save mateusduraes/59f2f87398c31f1afae59b438c781b0c to your computer and use it in GitHub Desktop.
<!-- https://developer.mozilla.org/pt-BR/docs/Web/API/MutationObserver -->
<ion-content>
<div>
<message *ngFor></message>
</div>
</ion-content>
<script>
const llist = null;
const obs = new MutationObserver(() => {
// scroll
})
obs.observe(llist, {
childList: true,
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment