Skip to content

Commit

Permalink
Merge pull request #42 from dstreet/or_method_firefox
Browse files Browse the repository at this point in the history
Remove visibility check. Closes #39
  • Loading branch information
dstreet authored Mar 31, 2017
2 parents 2f177d5 + 7cff188 commit cc2fed9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/subject-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ SubjectController.prototype._toggleDisplay = function(show, noFade) {
} else {
$hideEle = this.$subject.add('label[for="' + id + '"]')
}

if (show && !$hideEle.is(':visible')) {
if (show) {
if (noFade) {
$hideEle.show()
} else {
Expand Down

0 comments on commit cc2fed9

Please sign in to comment.