tweak comments

This commit is contained in:
samunohito 2024-01-30 10:07:54 +09:00
parent ad03ef03da
commit fc67fa994b
1 changed files with 2 additions and 1 deletions

View File

@ -81,7 +81,7 @@ const bus = new GridEventEmitter();
* 表示切替を検知しサイズの再計算要求を発行するために使用するマウント時にコンテンツが表示されていない場合初手のサイズの自動計算が正常に働かないため
*
* {@link setTimeout}を経由している理由は{@link onResize}の中でサイズ再計算要求サイズ変更が発生するとループとみなされ
* ResizeObserver loop completed with undelivered notifications.という警告が発生するため状態管理してるので実際にはループしない
* ResizeObserver loop completed with undelivered notifications.という警告が発生するため再計算が完全に終われば通知は発生しなくなるので実際にはループしない
*
* @see {@link onResize}
*/
@ -154,6 +154,7 @@ function onResize(entries: ResizeObserverEntry[]) {
switch (state.value) {
case 'hidden': {
if (contentRect.width > 0 && contentRect.height > 0) {
//
state.value = 'normal';
//