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(); +})