PGN text is not selectable (understand why?!)
-Change cursor when computer "think" (sablier)
-Tooltip text should fade (even when mouse stay on it, especially for small screens)
Checkered stage 2: switch button at reserve position (or on top).
Mode expert: game.js, button on top (with online indicator)
Turn indicator on top too (black or white)
attrs: { "aria-label": 'New game VS human' },
'class': {
"tooltip": true,
+ "bottom": true, //display below
"seek": this.seek,
"playing": playingHuman,
},
attrs: { "aria-label": 'New game VS computer' },
'class': {
"tooltip":true,
+ "bottom": true,
"playing": playingComp,
},
},
{
on: { click: this.resign },
attrs: { "aria-label": 'Resign' },
- 'class': { "tooltip":true },
+ 'class': {
+ "tooltip":true,
+ "bottom": true,
+ },
},
[h('i', { 'class': { "material-icons": true } }, "flag")])
);