-
money
+
-
+
diff --git a/script.js b/script.js
index 31d70ef..cdc64ba 100644
--- a/script.js
+++ b/script.js
@@ -462,9 +462,9 @@
$('.icon-circle-abc').css('background-color', 'rgb(66, 181, 73)');
}
- $scope.addOther = false;
- $scope.hideSelectBox = true;
$scope.industrykeyPress = function() {
+ $scope.addOther = false;
+ $scope.hideSelectBox = true;
$('.icon-circle-abcdefg').css('background-color', 'rgb(66, 181, 73)');
var e = document.getElementById("dataIndustry");
var dataIndustry = e.options[e.selectedIndex].value;
@@ -474,6 +474,15 @@
}
}
+ $scope.industryNamekeyPress = function(firstName) {
+ console.log("lastName==", firstName);
+ if (firstName == undefined) {
+ $('.icon-circle-o').css('background-color', 'rgb(102, 102, 102)');
+ } else {
+ $('.icon-circle-o').css('background-color', 'rgb(66, 181, 73)');
+ }
+ }
+
$scope.amountkeyPress = function() {
$('.icon-circle-bc').css('background-color', 'rgb(66, 181, 73)');
}
@@ -500,9 +509,9 @@
console.log("Val1:::", $scope.textCheck);
var e = document.getElementById("fundingDiv");
var funding = e.options[e.selectedIndex].value;
- $scope.Textshow = "yes";
+ $scope.Textshow = "no";
if(funding == "yes") {
- $scope.Textshow = "no";
+ $scope.Textshow = "yes";
console.log("Val:::", $scope.Textshow);
}
@@ -522,7 +531,7 @@
$scope.phonekeyPress = function(number) {
console.log("number", number);
- if (number == undefined) {
+ if (number == undefined || number == '') {
$('.icon-circle-e').css('background-color', 'rgb(102, 102, 102)');
} else {
$('.icon-circle-e').css('background-color', 'rgb(66, 181, 73)');
@@ -547,7 +556,7 @@
}
$scope.linkedInkeyPress = function(technology) {
- if (technology == undefined) {
+ if (technology == undefined || technology == '') {
$('.icon-circle-h').css('background-color', 'rgb(102, 102, 102)');
} else {
$('.icon-circle-h').css('background-color', 'rgb(66, 181, 73)');
@@ -572,7 +581,7 @@
}
$scope.websitekeyPress = function(prototype) {
- if (prototype == undefined) {
+ if (prototype == undefined || prototype == '') {
$('.icon-circle-k').css('background-color', 'rgb(102, 102, 102)');
} else {
$('.icon-circle-k').css('background-color', 'rgb(66, 181, 73)');
@@ -580,7 +589,7 @@
}
$scope.employeekeyPress = function(market) {
- if (market == undefined) {
+ if (market == undefined || market == '') {
$('.icon-circle-l').css('background-color', 'rgb(102, 102, 102)');
} else {
$('.icon-circle-l').css('background-color', 'rgb(66, 181, 73)');
@@ -588,7 +597,7 @@
}
$scope.annualkeyPress = function(risk) {
- if (risk == undefined) {
+ if (risk == undefined || risk == '') {
$('.icon-circle-m').css('background-color', 'rgb(102, 102, 102)');
} else {
$('.icon-circle-m').css('background-color', 'rgb(66, 181, 73)');
@@ -596,7 +605,7 @@
}
$scope.revenuekeyPress = function(team) {
- if (team == undefined) {
+ if (team == undefined || team == '') {
$('.icon-circle-n').css('background-color', 'rgb(102, 102, 102)');
} else {
$('.icon-circle-n').css('background-color', 'rgb(66, 181, 73)');