Skip to content
This repository has been archived by the owner on Oct 29, 2018. It is now read-only.

Commit

Permalink
Merge pull request #375 from raelgc/374-cannot-switch-team-using-keyb…
Browse files Browse the repository at this point in the history
…oard

Fixing keyboard team switching (#374)
  • Loading branch information
raelgc committed Feb 2, 2016
2 parents 9c2f368 + d305503 commit bae55db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scudcloud/resources/leftpane.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sources/leftpane-src.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ var LeftPane = {
var list = document.getElementsByTagName("li");
var index = 0;
for(; index < list.length; index++){
if (list[index].className == "active") {
if (list[index].classList.contains("active")) {
break;
}
}
Expand Down

0 comments on commit bae55db

Please sign in to comment.