From 8c261180d36bf1400503f0b9ed0905b8d7b38659 Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Tue, 24 Nov 2015 14:32:28 -0800 Subject: [PATCH] Fix incorrect logic --- client/commonFramework/step-challenge.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/commonFramework/step-challenge.js b/client/commonFramework/step-challenge.js index 6bee81c0b7..6b47565298 100644 --- a/client/commonFramework/step-challenge.js +++ b/client/commonFramework/step-challenge.js @@ -186,7 +186,7 @@ window.common = (function({ $, common = { init: [] }}) { } common.init.push(function($) { - if (common.challengeType === '7') { + if (common.challengeType !== '7') { return null; }