Created
January 20, 2019 19:43
-
-
Save funador/4a7d1a58c859928d4e815bb1d7591c26 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const attachListeners = () => { | |
$('#add-todo').submit(handlers.addHandler) | |
$('.collection').on('click', '.delete', handlers.deleteHandler) | |
$('.collection').on('click', '.save', handlers.updateTextHandler) | |
$('.collection').on('submit', 'form', handlers.updateTextHandler) | |
$('.collection').on('click', '.edit', handlers.editTextHandler) | |
$('.collection').on('click', '.done', handlers.updateDoneHandler) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment