diff --git a/app/assets/javascripts/job.js b/app/assets/javascripts/job.js index f94b0fdbb5e..8f32dcc94e2 100644 --- a/app/assets/javascripts/job.js +++ b/app/assets/javascripts/job.js @@ -100,8 +100,9 @@ export default class Job { } toggleScroll() { - const currentPosition = $(document).scrollTop(); - const scrollHeight = $(document).height(); + const $document = $(document); + const currentPosition = $document.scrollTop(); + const scrollHeight = $document.height(); const windowHeight = $(window).height(); if (this.canScroll()) {