fixed double scrolling bug with radio field
This commit is contained in:
parent
1721db9efe
commit
58380d23e3
@ -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;
|
||||
|
||||
|
||||
@ -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>
|
||||
|
||||
@ -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>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user