(div, target)
| 9258 | } |
| 9259 | |
| 9260 | adjustSignDiv(div, target) { |
| 9261 | let rect = target.getBoundingClientRect(); |
| 9262 | this.setImportant(div, "width", rect.width + "px"); |
| 9263 | this.setImportant(div, "height", rect.height + "px"); |
| 9264 | this.setImportant(div, "left", rect.left + window.scrollX + "px"); |
| 9265 | this.setImportant(div, "top", rect.top + window.scrollY + "px"); |
| 9266 | } |
| 9267 | |
| 9268 | getSelectorFromEle(ele) { |
| 9269 | return this.xpath.checked ? createXPathFromElement(ele) : geneSelector(ele, true); |
no test coverage detected