summaryrefslogtreecommitdiff
path: root/src/static/js/timeslider.js
diff options
context:
space:
mode:
authorJohn McLear <john@mclear.co.uk>2015-04-02 16:50:43 +0100
committerJohn McLear <john@mclear.co.uk>2015-04-02 16:50:43 +0100
commit139edceb66f194ce81a26838c7232afc33626d57 (patch)
tree02db1fcf4c61c6bbae2ca3f4f5d48acaca4dc464 /src/static/js/timeslider.js
parent85fc012bac0dbeefac611314f4ab35f276de871b (diff)
parentee5833b9c69a7b582d004fe1c2795f71052c021d (diff)
downloadetherpad-lite-139edceb66f194ce81a26838c7232afc33626d57.zip
Merge branch 'editbar-accessibility' of github.com:ether/etherpad-lite into editbar-accessibility
Diffstat (limited to 'src/static/js/timeslider.js')
-rw-r--r--src/static/js/timeslider.js6
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 = '';