Procházet zdrojové kódy

Fixed bug that didn't test listener type.

dev-tmpl
Bryan Miller před 6 roky
rodič
revize
6919de7f05
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. +2
    -0
      app/js/EventCaller.js

+ 2
- 0
app/js/EventCaller.js Zobrazit soubor

@@ -63,6 +63,8 @@ export class EventCaller{
* @returns {this}
*/
listen(eventName, callback, owner=null, once=false){
if (typeof(callback) !== 'function')
throw new TypeError("Expected callback argument to be a function or class method.");
try{
if (!this.is_listening(eventName, callback, owner)){
if (!this.__listeners.hasOwnProperty(eventName)){

Načítá se…
Zrušit
Uložit