fixed add new fieldbug

This commit is contained in:
David Baldwynn 2017-03-11 11:32:01 -08:00
parent 38deebffcb
commit 653f1aada4
No known key found for this signature in database
GPG key ID: 15D1C13202224A9B
4 changed files with 3 additions and 4 deletions

View file

@ -2458,8 +2458,8 @@ angular.module('forms').directive('editFormDirective', ['$rootScope', 'FormField
$scope.showLogicJump = false;
$scope.saveField = function(){
curr_field = $scope.field;
$scope.myform.form_fields.push(curr_field);
$scope.$parent.update(false, $scope.$parent.myform, false, true, function(){
$uibModalInstance.close();
});

File diff suppressed because one or more lines are too long

View file

@ -44,8 +44,8 @@ angular.module('forms').directive('editFormDirective', ['$rootScope', 'FormField
$scope.showLogicJump = false;
$scope.saveField = function(){
curr_field = $scope.field;
$scope.myform.form_fields.push(curr_field);
$scope.$parent.update(false, $scope.$parent.myform, false, true, function(){
$uibModalInstance.close();
});

View file

@ -9,7 +9,6 @@ section.auth {
background-color: #50B5C1; /* Old browsers */
background: -moz-linear-gradient(137deg, #50B5C1 0%, #6450A0 85%); /* FF3.6-15 */
background: -webkit-linear-gradient(137deg, #50B5C1 0%, #6450A0 85%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(137deg, #50B5C1 0%, #6450A0 85%);
background: linear-gradient(137deg, #50B5C1 0%, #6450A0 85%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#50B5C1', endColorstr='#6450A0', GradientType=1); /* IE6-9 fallback on horizontal gradient */
}