TF-2119 Remove log console unnecessary in WebView

(cherry picked from commit 12a63c64f92ce26c1e92f08393514e62374c9ba0)
This commit is contained in:
dab246
2023-09-15 00:47:54 +07:00
committed by Dat H. Pham
parent c3a6d0f4d8
commit d65eebb31e
2 changed files with 0 additions and 13 deletions
@@ -151,11 +151,8 @@ class _HtmlContentViewerOnWebState extends State<HtmlContentViewerOnWeb> {
}
function handleOnClickSignature() {
console.log("handleOnClickSignature");
const contentElement = document.querySelector('.tmail-content > .tmail-signature > .tmail-signature-content');
const buttonElement = document.querySelector('.tmail-content > .tmail-signature > .tmail-signature-button');
console.log("contentElement: " + contentElement);
console.log("buttonElement: " + buttonElement);
if (contentElement && buttonElement) {
if (contentElement.style.display === 'block') {
contentElement.style.display = 'none';