Procházet zdrojové kódy

Refactor: Make getDocumentScrollTop a standalone function

pull/169/head
winkidney před 5 roky
committed by Isaac Bythewood
rodič
revize
897d80170f
2 změnil soubory, kde provedl 5 přidání a 5 odebrání
  1. +5
    -0
      pinry/static/js/helpers.js
  2. +0
    -5
      pinry/static/js/vue/main.js

+ 5
- 0
pinry/static/js/helpers.js Zobrazit soubor

@@ -81,3 +81,8 @@ function postPinData(data) {
function getUrlParameter(name) {
return decodeURIComponent((new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(location.search) || [, ""])[1].replace(/\+/g, '%20')) || null;
}

function getDocumentScrollTop() {
var doc = document.documentElement;
return (window.pageYOffset || doc.scrollTop) - (doc.clientTop || 0);
}

+ 0
- 5
pinry/static/js/vue/main.js Zobrazit soubor

@@ -348,11 +348,6 @@ Vue.component('pin-container', {
bindScrollHandler: function () {
var self = this;

function getDocumentScrollTop() {
var doc = document.documentElement;
return (window.pageYOffset || doc.scrollTop) - (doc.clientTop || 0);
}

scrollHandler = function() {
if (self.status.loading || !self.status.hasNext) {
return


Načítá se…
Zrušit
Uložit