This commit is contained in:
Kukks
2023-09-01 13:10:08 +03:00
parent 364d2250b5
commit 49ebd8773b
2 changed files with 4 additions and 2 deletions

View File

@@ -9,7 +9,7 @@
<PropertyGroup>
<Product>SideShift</Product>
<Description>Allows you to embed a SideShift conversion screen to allow customers to pay with altcoins.</Description>
<Version>1.1.5</Version>
<Version>1.1.6</Version>
</PropertyGroup>
<!-- Plugin development properties -->
<PropertyGroup>

View File

@@ -34,7 +34,9 @@ document.addEventListener('DOMContentLoaded', (event) => {
!text.includes("bitcoincash");
// If it matches, show it; otherwise, hide it
option.style.display = isMatch ? '' : 'none';
//remove it
if (isMatch)
option.remove();
});
}
// const sideshiftDestinationButton = document.createElement("button");