Created
September 27, 2018 12:16
-
-
Save barisere/2f6f977b04dd48f5b5aebd4cb0477c6e to your computer and use it in GitHub Desktop.
This file contains 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 deleteHandler = { | |
handleEvent: (event: Event) => { | |
event.stopPropagation(); | |
const id = event.srcElement.getAttribute('resourceId'); | |
deleteRequests.set(event.srcElement, delayDeleteResource(id, 10000)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment