onDestroy

fires after scheduler has been cleared by the destructor method

void onDestroy();

Example

scheduler.attachEvent("onDestroy", function(){
   alert("free custom resources");
});
 
scheduler.destructor();

See also
Change log

added in v6.0

Back to top