Skip to content

Commit

Permalink
fraction...
Browse files Browse the repository at this point in the history
  • Loading branch information
tykus160 committed Dec 20, 2024
1 parent cbd3c82 commit ebdc53a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/seek_bar.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) + '%';
}


Expand Down

0 comments on commit ebdc53a

Please sign in to comment.