* Stop event bubbling. * @returns {void}
()
| 9924 | * @returns {void} |
| 9925 | */ |
| 9926 | stopImmediatePropagation() { |
| 9927 | const data = pd(this); |
| 9928 | data.stopped = true; |
| 9929 | data.immediateStopped = true; |
| 9930 | if (typeof data.event.stopImmediatePropagation === "function") { |
| 9931 | data.event.stopImmediatePropagation(); |
| 9932 | } |
| 9933 | }, |
| 9934 | /** |
| 9935 | * The flag to be bubbling. |
| 9936 | * @type {boolean} |
nothing calls this directly
no test coverage detected
searching dependent graphs…