From a614f6335e40ad933d0fa8ee1770eab2ce35fa5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Benqu=C3=A9?= Date: Tue, 29 Sep 2020 15:40:53 +0100 Subject: [PATCH] Swap tooltips for timeline buttons --- www/common/sframe-common-history.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/common/sframe-common-history.js b/www/common/sframe-common-history.js index 865b7fb3b..fa9462eed 100644 --- a/www/common/sframe-common-history.js +++ b/www/common/sframe-common-history.js @@ -415,7 +415,7 @@ define([ var prev = h('button.cp-toolbar-history-previous', { title: Messages.history_prev }, [ h('i.fa.fa-step-backward') ]); - var fastNext = h('button.cp-toolbar-history-next', { title: Messages.history_next }, [ + var fastNext = h('button.cp-toolbar-history-next', { title: Messages.history_fastNext }, [ h('i.fa.fa-users'), h('i.fa.fa-step-forward'), ]); @@ -423,7 +423,7 @@ define([ h('i.fa.fa-user'), h('i.fa.fa-step-forward'), ]); - var next = h('button.cp-toolbar-history-next', { title: Messages.history_fastNext }, [ + var next = h('button.cp-toolbar-history-next', { title: Messages.history_next }, [ h('i.fa.fa-step-forward') ]); var $fastPrev = $(fastPrev);