
com.google.gwt.user.client.impl.initWindowScrollHandler.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-mock-2.5.1 Show documentation
Show all versions of gwt-mock-2.5.1 Show documentation
A mocked implementation for GWT-2.5.1 that can run in the JVM to allow integration testing
The newest version!
function __gwt_initWindowScrollHandler(scroll) {
var wnd = window, oldOnScroll = wnd.onscroll;
wnd.onscroll = function(evt) {
try {
scroll();
} finally {
oldOnScroll && oldOnScroll(evt);
}
};
// Remove the reference once we've initialize the handler
wnd.__gwt_initWindowScrollHandler = undefined;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy