@mjhls/mjh-framework 1.0.730-isiscroll → 1.0.730-isiscroll-b
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/View.js +1 -1
- package/dist/esm/View.js +1 -1
- package/package.json +1 -1
package/dist/cjs/View.js
CHANGED
|
@@ -233,7 +233,7 @@ var ISI = function ISI(props) {
|
|
|
233
233
|
var article_body = document.getElementById('article__block');
|
|
234
234
|
var articleBottomPosition = article_body.getBoundingClientRect().bottom - window.innerHeight;
|
|
235
235
|
console.log(articleBottomPosition, bottomOfArticle);
|
|
236
|
-
if (articleBottomPosition <
|
|
236
|
+
if (articleBottomPosition < 15) {
|
|
237
237
|
setbottomOfArticle(true);
|
|
238
238
|
}
|
|
239
239
|
if (articleBottomPosition > 60) {
|
package/dist/esm/View.js
CHANGED
|
@@ -223,7 +223,7 @@ var ISI = function ISI(props) {
|
|
|
223
223
|
var article_body = document.getElementById('article__block');
|
|
224
224
|
var articleBottomPosition = article_body.getBoundingClientRect().bottom - window.innerHeight;
|
|
225
225
|
console.log(articleBottomPosition, bottomOfArticle);
|
|
226
|
-
if (articleBottomPosition <
|
|
226
|
+
if (articleBottomPosition < 15) {
|
|
227
227
|
setbottomOfArticle(true);
|
|
228
228
|
}
|
|
229
229
|
if (articleBottomPosition > 60) {
|