#1501 attributes improvement

This commit is contained in:
Grzegorz Zając 2024-02-26 11:35:53 +01:00
parent b6cdc004a9
commit f11b5eaef4
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,6 @@
//
/* global IntersectionObserver */
const isVisible = domElement => {
return new Promise(resolve => {
const o = new IntersectionObserver(([entry]) => {

View File

@ -125,7 +125,8 @@ const notObservedAttributes = [
'aria-valuemax',
'aria-valuemin',
'aria-valuenow',
'aria-valuetext'
'aria-valuetext',
'value'
];
module.exports = notObservedAttributes;