(font)
| 63 | } |
| 64 | |
| 65 | setFont(font) { |
| 66 | this.font = font; |
| 67 | this.input.style['font-family'] = font; |
| 68 | if (this.active) { |
| 69 | this.input.focus(); |
| 70 | } |
| 71 | if (this.active) { |
| 72 | this.reLimit(); |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | setStrokeOn(state) { |
| 77 | this.strokeOn = state; |
no test coverage detected