fixed double scrolling bug with radio field

This commit is contained in:
David Baldwynn 2017-11-19 15:38:08 -08:00
parent 1721db9efe
commit 58380d23e3
3 changed files with 4 additions and 5 deletions

View File

@ -165,7 +165,7 @@ angular.module('view-form').directive('submitFormDirective', ['$http', 'TimeCoun
if($scope.selected._id === field_id){
return;
}
$scope.selected._id = field_id;
$scope.selected.index = field_index;

View File

@ -28,7 +28,7 @@
ng-model="field.fieldValue"
ng-model-options="{ debounce: 250 }"
ng-required="field.required"
ng-change="nextField()"/>
ng-click="nextField()"/>
<div class="letter" style="float:left">
{{ 'Y' | translate }}
</div>
@ -43,7 +43,7 @@
ng-model="field.fieldValue"
ng-model-options="{ debounce: 250 }"
ng-required="field.required"
ng-change="nextField()"/>
ng-click="nextField()"/>
<div class="letter" style="float:left">
{{ 'N' | translate }}
</div>

View File

@ -31,8 +31,7 @@
value="{{option.option_value}}"
ng-model="field.fieldValue"
ng-required="field.required"
ng-click="$root.nextField()"
ng-change="$root.nextField()"/>
ng-click="$root.nextField()"/>
<span ng-bind="option.option_value"></span>
</label>