(instant = false)
| 103 | } |
| 104 | |
| 105 | export function hideFloatbutton(instant = false) { |
| 106 | if (instant) { |
| 107 | j.$('.floatbutton').fadeOut(); |
| 108 | return; |
| 109 | } |
| 110 | if (!floatDebounce) { |
| 111 | floatDebounce = setTimeout(() => { |
| 112 | floatDebounce = null; |
| 113 | j.$('.floatbutton').fadeOut(); |
| 114 | }, 500); |
| 115 | } |
| 116 | } |
no outgoing calls
no test coverage detected