mirror of
https://github.com/bugsink/bugsink.git
synced 2026-01-06 05:10:15 -06:00
Show-raise; bigger show x buttons
This commit is contained in:
@@ -119,6 +119,18 @@ function showInAppFrames() {
|
||||
});
|
||||
}
|
||||
|
||||
function showRaisingFrame() {
|
||||
document.querySelectorAll(".js-frame-details").forEach((frameDetails) => {
|
||||
if (frameDetails.classList.contains("js-raising-frame")) {
|
||||
expandSection(frameDetails);
|
||||
frameDetails.parentNode.querySelector(".js-chevron").classList.add("rotate-180");
|
||||
} else {
|
||||
collapseSection(frameDetails);
|
||||
frameDetails.parentNode.querySelector(".js-chevron").classList.remove("rotate-180");
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function hideAllFrames() {
|
||||
document.querySelectorAll(".js-frame-details").forEach((frameDetails) => {
|
||||
collapseSection(frameDetails);
|
||||
|
||||
Reference in New Issue
Block a user