Skip to content

Instantly share code, notes, and snippets.

View Spikus's full-sized avatar
🏠
Working from home

Danyl Yehoov Spikus

🏠
Working from home
View GitHub Profile
@Spikus
Spikus / event-delegate.js
Last active November 1, 2017 13:49
ZoneEventDelegate
class EventDelegate {
constructor() {
this.events = {};
window.eventDelegate = this;
}
addEvent(newEvent, eventSelector, handle) {
this.createEvent(newEvent);