전역객체에서 broadcast 할 때 자식 플러그인에도 cast 하도록 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6867 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
taggon 2009-10-15 02:31:44 +00:00
parent 423b34861c
commit d3111892d8

View file

@ -98,6 +98,9 @@ _xe_base = {
for(var i=0; i < this._apps.length; i++) {
this._apps[i].cast(oSender, msg, params);
}
// cast to child plugins
this.cast(oSender, msg, params);
}
}