Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IE8 JScript_DontEnum_Bug #2565

Closed
wants to merge 5 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update text-track-list.js
  • Loading branch information
zjruan committed Sep 7, 2015
commit ffd7fee6fa5d07d3b4e70da0d2af86d6af4fe3f8
2 changes: 1 addition & 1 deletion src/js/tracks/text-track-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ let TextTrackList = function(tracks) {
list = document.createElement('custom');

for (let prop in TextTrackList.prototype) {
if(prop!='constructor'){
if(prop!=='constructor'){
list[prop] = TextTrackList.prototype[prop];
}
}
Expand Down