Показать сообщение отдельно
  #2 (permalink)  
Старый 11.10.2014, 00:10
Аспирант
Отправить личное сообщение для 2chan Посмотреть профиль Найти все сообщения от 2chan
 
Регистрация: 11.07.2014
Сообщений: 69

Всё, разобрался. Если кому интересно:

HTMLElement.prototype.on = Document.prototype.on = function (event, func, bool) { // добавить событие
	if(func instanceof Array) {
		func = new Function(func[0], func[1]);
	}
	this.addEventListener(event, func, bool);
};

HTMLElement.prototype.off = Document.prototype.off = function (event, func, bool) { // удалить событие
	if(func instanceof Array) {
		func = new Function(func[0], func[1]);
	}
	this.removeEventListener(event, func, bool);
};

Последний раз редактировалось 2chan, 11.10.2014 в 01:34.
Ответить с цитированием