(state)
| 79 | } |
| 80 | |
| 81 | setFontIsBold(state) { |
| 82 | this.isBold = state; |
| 83 | if (state) { |
| 84 | this.input.style['font-weight'] = 'bold'; |
| 85 | } else { |
| 86 | this.input.style['font-weight'] = 'normal'; |
| 87 | } |
| 88 | if (this.active) { |
| 89 | this.input.focus(); |
| 90 | this.reLimit(); |
| 91 | } |
| 92 | this.setStrokeParams(); |
| 93 | } |
| 94 | |
| 95 | setFontIsItalic(state) { |
| 96 | this.isItalic = state; |
no test coverage detected