()
| 9232 | } |
| 9233 | |
| 9234 | close() { |
| 9235 | this.clearSigns(); |
| 9236 | if (this.frame.parentNode) this.frame.parentNode.removeChild(this.frame); |
| 9237 | if (this.mainSignDiv.parentNode) this.mainSignDiv.parentNode.removeChild(this.mainSignDiv); |
| 9238 | getBody(document).classList.remove("pagetual-picker"); |
| 9239 | getBody(document).removeEventListener("mousemove", this.moveHandler, true); |
| 9240 | getBody(document).removeEventListener("click", this.clickHandler, true); |
| 9241 | getBody(document).title = ""; |
| 9242 | this.inPicker = false; |
| 9243 | } |
| 9244 | |
| 9245 | setImportant(ele, prop, value) { |
| 9246 | ele.style.setProperty(prop, value, "important"); |
no test coverage detected