Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Created January 27, 2014 18:23
export class FormChangeTracker{
$(selector).on('change', () => {
if (!this.enabled) {
return;
}
this.changed = true;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment