()
| 16 | * Bind mouse movement evens on instance |
| 17 | */ |
| 18 | var bindEvents = function bindEvents() { |
| 19 | var _this = this; |
| 20 | $(this).on('mousemove', mouseMove); |
| 21 | $(this).on('mouseenter', mouseEnter); |
| 22 | if (this.settings.reset) $(this).on('mouseleave', mouseLeave); |
| 23 | if (this.settings.glare) $(window).on('resize', updateGlareSize.bind(_this)); |
| 24 | }; |
| 25 | |
| 26 | /** |
| 27 | * Set transition only on mouse leave and mouse enter so it doesn't influence mouse move transforms |
nothing calls this directly
no outgoing calls
no test coverage detected