()
| 24 | |
| 25 | |
| 26 | function input_min_fixed_height() { // 返回当前的输入panel的最小高度 |
| 27 | const min_fixed_height = Math.max(state.InputPanelMinHeight, 75); |
| 28 | |
| 29 | //80 = #input-container.fixed padding-top + padding-bottom |
| 30 | let now_height = input_cards.height() + 80; |
| 31 | |
| 32 | return Math.min(now_height, min_fixed_height); |
| 33 | } |
| 34 | |
| 35 | |
| 36 | function fixed_input_init_height() { // 返回当前的输入panel的初始高度 |
no outgoing calls
no test coverage detected
searching dependent graphs…