From f798ca4faf2ce5ec3ab71ba6a8e29306bd7dc2cb Mon Sep 17 00:00:00 2001 From: Holger Trampe Date: Mon, 18 Oct 2021 09:16:14 +0200 Subject: [PATCH] Talk button weg --- js/tm.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/js/tm.js b/js/tm.js index eec4a02..96e33ef 100644 --- a/js/tm.js +++ b/js/tm.js @@ -298,5 +298,17 @@ function realTimeBreakClock(){ var html_content = '
'; +// TALK BUTTON +function remTalkButton(){ + + window.setInterval(function(){ + $( ".icon-start-call" ).each(function() { + $(this).parent().hide(); + }); + }, 100); +} +$(document).ready(function(){ + remTalkButton(); +})