From 728d8b64e0628b2a7d2a4c33592b35bb33a0673e Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 20 Nov 2017 09:10:11 +0900 Subject: [PATCH] Clean up --- src/web/app/desktop/tags/home.tag | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/src/web/app/desktop/tags/home.tag b/src/web/app/desktop/tags/home.tag index a2a372a0e..95e68cbcb 100644 --- a/src/web/app/desktop/tags/home.tag +++ b/src/web/app/desktop/tags/home.tag @@ -259,28 +259,6 @@ } }); - this.followWidgets = () => { - const windowBottom = window.scrollY + window.innerHeight; - const windowTop = window.scrollY + this.headerHight; - - const calc = widgets => { - const rect = widgets.getBoundingClientRect(); - const widgetsHeight = rect.height + this.containerTop; - const widgetsBottom = (rect.top + window.scrollY) + rect.height; - - if (windowBottom > widgetsBottom && widgetsHeight > window.innerHeight) { - const top = (windowBottom - rect.height) - this.containerTop; - widgets.parentNode.style.marginTop = `${top}px`; - } else if (windowTop < rect.top + window.scrollY || widgetsHeight < window.innerHeight) { - const top = windowTop - this.containerTop; - widgets.parentNode.style.marginTop = `${top}px`; - } - }; - - calc(this.refs.left); - calc(this.refs.right); - }; - this.setWidget = (widget, prepend = false) => { const el = document.createElement(`mk-${widget.name}-home-widget`);