onViewResize

fires on resizing a view

void onViewResize(){ ... };

Example

some.attachEvent("onViewResize",function(){
    // your logic here
});

Back to top