* Stop event bubbling. * @returns {void}
()
| 9913 | * @returns {void} |
| 9914 | */ |
| 9915 | stopPropagation() { |
| 9916 | const data = pd(this); |
| 9917 | data.stopped = true; |
| 9918 | if (typeof data.event.stopPropagation === "function") { |
| 9919 | data.event.stopPropagation(); |
| 9920 | } |
| 9921 | }, |
| 9922 | /** |
| 9923 | * Stop event bubbling. |
| 9924 | * @returns {void} |
nothing calls this directly
no test coverage detected
searching dependent graphs…