fuck again
This commit is contained in:
parent
b28555b7e4
commit
ba06ec32c0
1 changed files with 2 additions and 2 deletions
|
@ -146,7 +146,7 @@ function readFollowersMap(m) {
|
||||||
if (m == null) return;
|
if (m == null) return;
|
||||||
const handles = Array.from(el_id_listfollowers.querySelectorAll(".follower_checkname"));
|
const handles = Array.from(el_id_listfollowers.querySelectorAll(".follower_checkname"));
|
||||||
handles.forEach((handle) => {
|
handles.forEach((handle) => {
|
||||||
const checkbox = handle.parentElement.parentElement.querySelector(".follower_checkbox");
|
const checkbox = handle.parentElement.querySelector(".follower_checkbox");
|
||||||
checkbox.checked = m[handle.innerHTML];
|
checkbox.checked = m[handle.innerHTML];
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -294,7 +294,7 @@ function readFollowingMap(m) {
|
||||||
if (m == null) return;
|
if (m == null) return;
|
||||||
const handles = Array.from(el_id_listfollowing.querySelectorAll(".following_checkname"));
|
const handles = Array.from(el_id_listfollowing.querySelectorAll(".following_checkname"));
|
||||||
handles.forEach((handle) => {
|
handles.forEach((handle) => {
|
||||||
const checkbox = handle.parentElement.parentElement.querySelector(".following_checkbox");
|
const checkbox = handle.parentElement.querySelector(".following_checkbox");
|
||||||
checkbox.checked = m[handle.innerHTML];
|
checkbox.checked = m[handle.innerHTML];
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue