Skip to content

Commit

Permalink
Fixed instances of tabIndex that did not have a capital I [#2176]
Browse files Browse the repository at this point in the history
  • Loading branch information
heff committed May 27, 2015
1 parent fdd1339 commit 7c169d4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ CHANGELOG
* @mmcc Changed to pure CSS slider handles ([view](https://github.com/videojs/video.js/pull/2132))
* @mister-ben updated language support to handle language codes with regions ([view](https://github.com/videojs/video.js/pull/2177))
* @heff changed the 'ready' event to always be asynchronous ([view](https://github.com/videojs/video.js/pull/2188))
* @heff fixed instances of tabIndex that did not have a capital I ([view](https://github.com/videojs/video.js/pull/2204))

--------------------

Expand Down
2 changes: 1 addition & 1 deletion src/js/control-bar/text-track-controls/chapters-button.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class ChaptersButton extends TextTrackButton {
menu.contentEl().appendChild(Dom.createEl('li', {
className: 'vjs-menu-title',
innerHTML: toTitleCase(this.kind_),
tabindex: -1
tabIndex: -1
}));
}

Expand Down
2 changes: 1 addition & 1 deletion src/js/menu/menu-button.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class MenuButton extends Button {
menu.contentEl().appendChild(Dom.createEl('li', {
className: 'vjs-menu-title',
innerHTML: toTitleCase(this.options().title),
tabindex: -1
tabIndex: -1
}));
}

Expand Down

0 comments on commit 7c169d4

Please sign in to comment.