Skip to content

Commit

Permalink
Merge pull request #183 from hypermodules/cabs
Browse files Browse the repository at this point in the history
Fix highlight on scroll.. Mostly
  • Loading branch information
bcomnes authored Jun 17, 2017
2 parents 04dffc3 + b05f01f commit 2c0034c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions renderer/elements/table/rows.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ TableRows.prototype._rowMap = function (key, idx) {
var meta = this._trackDict[key]
// Generate state based styles
var classes = {}
classes[styles.playing] = this._currentIndex === idx
classes[styles.selected] = this._selectedIndex === idx
classes[styles.playing] = this._currentIndex === idx + this._sliceStartIndex
classes[styles.selected] = this._selectedIndex === idx + this._sliceStartIndex

return html`
<tr style=""
Expand Down

0 comments on commit 2c0034c

Please sign in to comment.