diff --git a/ui/seek_bar.js b/ui/seek_bar.js index 0c4b334d61..922c8a1507 100644 --- a/ui/seek_bar.js +++ b/ui/seek_bar.js @@ -442,12 +442,12 @@ shaka.ui.SeekBar = class extends shaka.ui.RangeElement { /** * @param {string} color - * @param {number} fracture + * @param {number} fraction * @return {string} * @private */ - makeColor_(color, fracture) { - return color + ' ' + (fracture * 100) + '%'; + makeColor_(color, fraction) { + return color + ' ' + (fraction * 100) + '%'; }