Skip to content

Instantly share code, notes, and snippets.

@Zizzamia
Created February 7, 2017 02:19
Show Gist options
  • Select an option

  • Save Zizzamia/c2dcdae4c17d694e62ac467a267e4a15 to your computer and use it in GitHub Desktop.

Select an option

Save Zizzamia/c2dcdae4c17d694e62ac467a267e4a15 to your computer and use it in GitHub Desktop.
export class tasksList {
constructor(ElementRef: ElementRef) {
this.element = ElementRef.nativeElement;
}
// ...
ngOnDestroy() {
if (this.elLists) {
Array.prototype.forEach.call(this.elLists, (elList) => {
$(elList).sortable('destroy');
});
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment