diff options
author | John McLear <john@mclear.co.uk> | 2015-04-02 16:50:43 +0100 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2015-04-02 16:50:43 +0100 |
commit | 139edceb66f194ce81a26838c7232afc33626d57 (patch) | |
tree | 02db1fcf4c61c6bbae2ca3f4f5d48acaca4dc464 /src/static | |
parent | 85fc012bac0dbeefac611314f4ab35f276de871b (diff) | |
parent | ee5833b9c69a7b582d004fe1c2795f71052c021d (diff) | |
download | etherpad-lite-139edceb66f194ce81a26838c7232afc33626d57.zip |
Merge branch 'editbar-accessibility' of github.com:ether/etherpad-lite into editbar-accessibility
Diffstat (limited to 'src/static')
-rw-r--r-- | src/static/js/timeslider.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/static/js/timeslider.js b/src/static/js/timeslider.js index ec237df5..580a7a03 100644 --- a/src/static/js/timeslider.js +++ b/src/static/js/timeslider.js @@ -157,6 +157,12 @@ function handleClientVars(message) fireWhenAllScriptsAreLoaded[i](); } $("#ui-slider-handle").css('left', $("#ui-slider-bar").width() - 2); + + // Translate some strings where we only want to set the title not the actual values + $('#playpause_button_icon').attr("title", html10n.get("timeslider.playPause")); + $('#leftstep').attr("title", html10n.get("timeslider.backRevision")); + $('#rightstep').attr("title", html10n.get("timeslider.forwardRevision")); + } exports.baseURL = ''; |