* Calls a function when the mouse moves onto the element. * * Calling `myElement.mouseOver(false)` disables the function. * * @param {Function|Boolean} fxn function to call when the mouse * moves onto the element. * `fa
(fxn)
| 1692 | * } |
| 1693 | */ |
| 1694 | mouseOver(fxn) { |
| 1695 | Element._adjustListener('pointerover', fxn, this); |
| 1696 | return this; |
| 1697 | } |
| 1698 | |
| 1699 | /** |
| 1700 | * Calls a function when the mouse moves off the element. |
no test coverage detected