arcnovus / tms-issues-mw

Issue tracker
0 stars 0 forks source link

Gender slider broken #19

Closed arcdev1 closed 10 years ago

arcdev1 commented 10 years ago

On test build 5 the gender slider doesn't move back to Men after Women has been selected.

arcdev1 commented 10 years ago

Fixed in test 6. If statement was comparing 'm' with "m" using === Since we're dealing with a single character the test fails because 'm' is a char and "m" is a string. Updated to test for 'm' instead of "m".