()
| 926 | } |
| 927 | |
| 928 | relayout() { |
| 929 | if (this.rendered && !this.relayoutRequested) { |
| 930 | this.relayoutRequested = true; // avoid scheduling a relayout twice |
| 931 | requestAnimationFrame(this.relayoutImpl.bind(this)); |
| 932 | } |
| 933 | } |
| 934 | |
| 935 | relayoutImpl() { |
| 936 | this.relayoutRequested = false; // reset relayout request |
no outgoing calls
no test coverage detected