Skip to content

Commit

Permalink
Dev: Add Bootstrap form-control class to default values view
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Mar 21, 2016
1 parent de0244d commit 76434c2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</label>
<div class="col-sm-10">

<select name='defaultanswerscale_<?php echo "{$scale_id}_{$language}" ?>' id='defaultanswerscale_<?php echo "{$scale_id}_{$language}" ?>'>
<select class='form-control' name='defaultanswerscale_<?php echo "{$scale_id}_{$language}" ?>' id='defaultanswerscale_<?php echo "{$scale_id}_{$language}" ?>'>

<option value=''<?php is_null($opts['defaultvalue']) ? ' selected="selected"' : '' ?>>
<?php eT('<No default value>') ?>
Expand Down Expand Up @@ -112,7 +112,7 @@
<?php echo "{$aSubquestion['title']}: " . flattenText($aSubquestion['question']) ?>
</label>
<div class="col-sm-10">
<select name='defaultanswerscale_<?php echo "{$scale_id}_{$language}_{$aSubquestion['qid']}" ?>'
<select class='form-control' name='defaultanswerscale_<?php echo "{$scale_id}_{$language}_{$aSubquestion['qid']}" ?>'
id='defaultanswerscale_<?php echo "{$scale_id}_{$language}_{$aSubquestion['qid']}" ?>'>
<?php
foreach ($aSubquestion['options'] as $value => $label)
Expand Down Expand Up @@ -212,4 +212,4 @@
</form>
</div>
</div>
</div>
</div>

0 comments on commit 76434c2

Please sign in to comment.