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

Commit

Permalink
Fixing keyboard team switching (#374)
Browse files Browse the repository at this point in the history
  • Loading branch information
raelgc committed Feb 2, 2016
1 parent daff7bf commit d305503
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 d305503

Please sign in to comment.