Mercurial > hg > webaudioevaluationtool
comparison js/core.js @ 2665:ad57c5c755d4
radio entry conditionals are being falsed.
author | Nicholas Jillings <nicholas.jillings@mail.bcu.ac.uk> |
---|---|
date | Fri, 17 Mar 2017 11:24:17 +0000 |
parents | 7ebeb0bffc5a |
children | 2f2aaef246af 8f485581ee73 |
comparison
equal
deleted
inserted
replaced
2663:29672fa03c75 | 2665:ad57c5c755d4 |
---|---|
990 case "greaterThan": | 990 case "greaterThan": |
991 case "lessThan": | 991 case "lessThan": |
992 console.log("Survey Element of type 'radio' cannot interpret contains/greaterThan/lessThan conditions. IGNORING"); | 992 console.log("Survey Element of type 'radio' cannot interpret contains/greaterThan/lessThan conditions. IGNORING"); |
993 break; | 993 break; |
994 case "equals": | 994 case "equals": |
995 if (node.response == condition.value) { | 995 if (node.response.name == condition.value) { |
996 pass = true; | 996 pass = true; |
997 } | 997 } |
998 break; | 998 break; |
999 } | 999 } |
1000 var jumpID; | 1000 var jumpID; |