Navigation Menu

Skip to content

Commit

Permalink
Fixed issue : unable to disable samechoiceheight and samelistheight i…
Browse files Browse the repository at this point in the history
…n ranking
  • Loading branch information
Shnoulle committed Jan 10, 2019
1 parent 7dd61c6 commit 67b313a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions assets/packages/questions/ranking/scripts/ranking.js
Expand Up @@ -10,9 +10,9 @@ var RankingQuestion = function (options) {
var max_answers = options.max_answers,
min_answers = options.min_answers,
rankingName = options.rankingName,
showpopups = (typeof options.showpopups == 'undefined') ? options.showpopups : true,
samechoiceheight = (typeof options.samechoiceheight == 'undefined') ? options.samechoiceheight : true,
samelistheight = (typeof options.samelistheight == 'undefined') ? options.samelistheight : true,
showpopups = (typeof options.showpopups != 'undefined') ? options.showpopups : true,
samechoiceheight = (typeof options.samechoiceheight != 'undefined') ? options.samechoiceheight : true,
samelistheight = (typeof options.samelistheight != 'undefined') ? options.samelistheight : true,
questionId = options.questionId;
//define reused variables
var relevancename= "relevance"+rankingName,
Expand Down

0 comments on commit 67b313a

Please sign in to comment.