Welcome to mirror list, hosted at ThFree Co, Russian Federation.

scroll_by.js « dom_shims « __helpers__ « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 90387e51765f450c8dc5e2a5975547fefb443687 (plain)
1
2
3
4
5
6
7
window.scrollX = 0;
window.scrollY = 0;

window.scrollBy = (x, y) => {
  window.scrollX += x;
  window.scrollY += y;
};