From 5b2eadf60b0ec12296ffda5b5b79ddc4f24139d1 Mon Sep 17 00:00:00 2001 From: Jared Tabor Date: Tue, 14 Oct 2014 09:54:43 -0400 Subject: [PATCH] added 'form-control' class to survey maker form control class added to the integer/float input fields to make them more uniform throughout --- awx/ui/static/js/helpers/Survey.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/ui/static/js/helpers/Survey.js b/awx/ui/static/js/helpers/Survey.js index 8009609b2b..0ddb5aaad3 100644 --- a/awx/ui/static/js/helpers/Survey.js +++ b/awx/ui/static/js/helpers/Survey.js @@ -338,7 +338,7 @@ angular.module('SurveyHelper', [ 'Utilities', 'RestServices', 'SchedulesHelper', defaultValue = (!Empty(question.default)) ? question.default : (!Empty(question.default_int)) ? question.default_int : "" ; html+='
'+ '
'+ - ''+ + ''+ '
'; } @@ -348,7 +348,7 @@ angular.module('SurveyHelper', [ 'Utilities', 'RestServices', 'SchedulesHelper', defaultValue = (!Empty(question.default)) ? question.default : (!Empty(question.default_float)) ? question.default_float : "" ; html+='
'+ '
'+ - ''+ + ''+ '
'; }