Eventos personalizados em Javascript
function cEvent(){ /** * Private handlers */ var handlers = {}; * Adicionar tipo e manipulador * * this.add = function(type, handler){ if(typeof handlers[type] === “undefined” ){ handlers[type] = []; …
Continuar lendo