()
| 73 | } |
| 74 | |
| 75 | function getSpecialTransitionEndEvent() { |
| 76 | return { |
| 77 | bindType: transition.end, |
| 78 | delegateType: transition.end, |
| 79 | handle: function handle(event) { |
| 80 | if ($$$1(event.target).is(this)) { |
| 81 | return event.handleObj.handler.apply(this, arguments); // eslint-disable-line prefer-rest-params |
| 82 | } |
| 83 | |
| 84 | return undefined; // eslint-disable-line no-undefined |
| 85 | } |
| 86 | }; |
| 87 | } |
| 88 | |
| 89 | function transitionEndTest() { |
| 90 | if (typeof window !== 'undefined' && window.QUnit) { |
no test coverage detected