Todos los informes
Informes de Tholos
#98413: "Move the grey stone to 4 in clockwise column"
fixed: El error ha sido arreglado
1
¿Sobre qué es este informe?
¿Qué ha pasado? Por favor, selecciona una de las opciones siguientes
En algún momento no he sido capaz de realizar ninguna acción del juego (juego bloqueado y abandonado)
Descripción detallada
-
• ¿En qué etapa de la partida ocurrió el problema? ¿Cuál era la instrucción actual del juego?
#12
-
• ¿Qué sucedió cuando trataste de hacer una acción de juego (mensaje de error, mensaje en la barra de estado del juego, ...)?
Black player wants to move the grey stone of the 3 column to the 4 and he cannot do it
• ¿Qué navegador estás usando?
Google Chrome v116
Historial de informes
13 Sep 2023 03:55 • giantroach • El error ha sido confirmado por los desarrolladores:
Same case as #98414 .
The gray stone is highlighted but cannot be clicked.
(#modal has a blink so popup blocks the click events)
This occurs only when window width is not wide enough.
The gray stone is highlighted but cannot be clicked.
(#modal has a blink so popup blocks the click events)
This occurs only when window width is not wide enough.
15 Sep 2023 13:53 • giantroach • El error ha sido arreglado:
The main issue was quite complex.
1. `mouseover` and `mouseleave` events are used for toggling hint.
2. In touch device, those two events are triggered differently than the mouse. Genrally it triggered at sametime.
3. To ensure the popup elm is attached to the body, showHint() uses setTimeout().
4. Once Hint popup is displayed even once, it caches the last displayed position.
5. Due to the cache, popup may displayed exactly over the touched place.
6. Because of popup, mouseleave event is triggered on touch device. So flag is turned off during the setTimeout.
7. Since flag is turned off, showHint() cannot find the popup elm and halt the furthr process.
-----
Fixed as below:
1. Clear the position cache in an appropriate timing.
2. Display hint more flexibly (not only right side, left side if the remaining pos is not enough). Adjusted the hint size.
1. `mouseover` and `mouseleave` events are used for toggling hint.
2. In touch device, those two events are triggered differently than the mouse. Genrally it triggered at sametime.
3. To ensure the popup elm is attached to the body, showHint() uses setTimeout().
4. Once Hint popup is displayed even once, it caches the last displayed position.
5. Due to the cache, popup may displayed exactly over the touched place.
6. Because of popup, mouseleave event is triggered on touch device. So flag is turned off during the setTimeout.
7. Since flag is turned off, showHint() cannot find the popup elm and halt the furthr process.
-----
Fixed as below:
1. Clear the position cache in an appropriate timing.
2. Display hint more flexibly (not only right side, left side if the remaining pos is not enough). Adjusted the hint size.
Agregar a este informe
Por favor agrega aquí cualquier cosa que sea relevante para reproducir este error o entender tu sugerencia:
- Otro ID de partida / ID de jugada
- ¿Se resolvió el problema al pulsar F5?
- ¿Apareció el problema varias veces? ¿Cada vez? ¿Aleatoriamente?
- Si tienes una captura de este error (buena práctica), puedes usar Imgur.com para subirla y copiar/pegar el enlace aquí.

