Use arrow function over `.bind`

pull/1/head
Daniel Gasienica 7 years ago
parent a86a596f34
commit ae419764bf

@ -656,7 +656,7 @@
const view = new window.Whisper.ReactWrapper({
Component: MediaGallery,
props,
onClose: this.resetPanel.bind(this),
onClose: () => this.resetPanel(),
});
this.listenBack(view);

Loading…
Cancel
Save