(state)
| 1554 | return {disabled: _btnDisabled}; |
| 1555 | } |
| 1556 | function setButtonInputState(state) { |
| 1557 | if (!isObject(state)) { |
| 1558 | console.error( |
| 1559 | errMsgPrefix + ' Button input state must be object rather than ' + printObject(state) |
| 1560 | + ' May caused by test case change.' |
| 1561 | ); |
| 1562 | return; |
| 1563 | } |
| 1564 | resetButtonInputDisabled(state); |
| 1565 | } |
| 1566 | } // End of createButtonInput |
| 1567 | |
| 1568 | function createBr(inputDefine) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…