Skip to content

Commit

Permalink
Fix logic on basejump/ziplines
Browse files Browse the repository at this point in the history
  • Loading branch information
Berkeley Martinez authored and Berkeley Martinez committed Oct 16, 2015
1 parent 12eeef2 commit 1b75d04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/views/coursewares/showZiplineOrBasejump.jade
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,11 @@ block content
document.addEventListener('gitter-sidecar-ready', function(e) {
if (window.main) {
window.main.chat.createHelpChat(
!{JSON.stringify(challengeType)} === 3 ?
!{JSON.stringify(challengeType)} !== 3 ?
'freecodecamp/helpZiplines' :
'freecodecamp/helpBasejumps',
'#challenge-help-btn',
!{JSON.stringify(challengeType)} === 3 ?
!{JSON.stringify(challengeType)} !== 3 ?
'Zipline Help' :
'Basejump Help'
);
Expand Down

0 comments on commit 1b75d04

Please sign in to comment.