From 7de7be72374ba26030ef2a25d22c25ce0dddc6c6 Mon Sep 17 00:00:00 2001 From: Benjamin Auder <benjamin.auder@somewhere> Date: Sun, 4 Feb 2018 21:09:55 +0100 Subject: [PATCH] Better hints on mousehover --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 2b99c37..c31bbd9 100644 --- a/index.html +++ b/index.html @@ -13,13 +13,13 @@ <div class="row"> <div class="col s12"> <form class="center"> - <div class="input-field inline"> + <div class="input-field inline" title="The number of human moves remembered by the program. Higher means better performances, generally"> <input id="nInput" type="number" v-model.number="nInput" @change="reinitialize()"> <label for="nInput">Memory</label> </div> - <span class="leftSpacing"> + <span class="leftSpacing" title="If activated, the bot consider a draw as a lost game, and therefore tries to win even harder"> <input id="drawIsLost" type="checkbox" v-model="drawIsLost"> - <label for="drawIsLost" title="If activated, the bot consider a draw as a lost game, and therefore tries to win even harder">Winner bot</label> + <label for="drawIsLost">Winner bot</label> </span> </form> </div> -- 2.44.0