onViewMoveEnd

fires when view has stopped moving

void onViewMoveEnd();

Example

window.attachEvent("onViewMoveEnd", function(){
    //code
});

Details

The event does not have any parameters, but you can always get view coordinates via its getNode method that returns view HTML:

var top = window.getNode().offsetTop;
var left = window.getNode().offsetLeft;
See also
  • API
  • Articles
  • Back to top