Quote:
Originally Posted by Inverness
I'm just pointing out how at the moment you would do something like:
this.catchevent("GraalControl", "onResize", "onGraalControlResize");
instead of:
this.catchevent("GraalControl", "Resize", "GraalControlResize");
|
I know what you're saying, but if it was expanded to dynamic, we could just have something that watches for another thing, but the other function also does stuff. For example,
PHP Code:
function onCreated()
{
this.catchevent( ... );
}
function messWithStuff()
{
do something lol();
}
While messWithStuff() is still functional, we don't need to change it's name.