diff options
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 = ''; |