Skip to content

Commit

Permalink
Fixed issue #03933: error with slider show min and show max
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/limesurvey@8056 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
Thibault Le Meur committed Dec 4, 2009
1 parent 0dd4702 commit f3d2334
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions qanda.php
Expand Up @@ -4047,18 +4047,6 @@ function do_multiplenumeric($ia)
{
$slider_separator = '';
}

if ($qidattributes['slider_showminmax']==1)
{
//$slider_showmin=$slider_min;
$slider_showmin= "\t<div id=\"slider-left-$myfname\" class=\"slider_showmin\">$slider_min</div>\n";
$slider_showmax= "\t<div id=\"slider-right-$myfname\" class=\"slider_showmax\">$slider_max</div>\n";
}
else
{
$slider_showmin='';
$slider_showmax='';
}
}
else
{
Expand Down Expand Up @@ -4140,6 +4128,19 @@ function do_multiplenumeric($ia)
}
else
{

if ($qidattributes['slider_showminmax']==1)
{
//$slider_showmin=$slider_min;
$slider_showmin= "\t<div id=\"slider-left-$myfname\" class=\"slider_showmin\">$slider_min</div>\n";
$slider_showmax= "\t<div id=\"slider-right-$myfname\" class=\"slider_showmax\">$slider_max</div>\n";
}
else
{
$slider_showmin='';
$slider_showmax='';
}

$js_header_includes[] = '/scripts/jquery/jquery-ui.js';
$js_header_includes[] = '/scripts/jquery/lime-slider.js';

Expand Down

0 comments on commit f3d2334

Please sign in to comment.