Fix linting

This commit is contained in:
Samuel Attard 2017-03-13 11:00:10 +11:00
parent 25a231fc50
commit a85ae27d68
No known key found for this signature in database
GPG key ID: E89DDE5742D58C4E
2 changed files with 4 additions and 4 deletions

View file

@ -242,9 +242,9 @@ TouchBar.TouchBarScrubber = class TouchBarScrubber extends TouchBarItem {
if (typeof onSelect === 'function' || typeof onHighlight === 'function') { if (typeof onSelect === 'function' || typeof onHighlight === 'function') {
this.onInteraction = (details) => { this.onInteraction = (details) => {
if (details.type === 'select') { if (details.type === 'select') {
onSelect(details.selectedIndex); onSelect(details.selectedIndex)
} else if (details.type === 'highlight') { } else if (details.type === 'highlight') {
onHighlight(details.highlightedIndex); onHighlight(details.highlightedIndex)
} }
} }
} }