diff --git a/pages/ambassador.html b/pages/ambassador.html index 1f90e78..4fd5746 100644 --- a/pages/ambassador.html +++ b/pages/ambassador.html @@ -61,10 +61,10 @@
-
+
web
- +
diff --git a/script.js b/script.js index 645cc28..ca380cb 100644 --- a/script.js +++ b/script.js @@ -192,7 +192,11 @@ } } $scope.businesskeyPress = function(business) { - $('.icon-circle-p').css('background-color', 'rgb(25, 104, 157)'); + if (business == undefined) { + $('.icon-circle-p').css('background-color', 'rgb(102, 102, 102)'); + } else { + $('.icon-circle-p').css('background-color', 'rgb(25, 104, 157)'); + } } $scope.websitekeyPress = function(prototype) { @@ -229,8 +233,10 @@ $scope.descriptionkeyPress = function(pitch) { if (pitch == undefined) { + console.log("pitch",pitch) $('.icon-circle-z').css('background-color', 'rgb(102, 102, 102)'); } else { + console.log("pitch",pitch) $('.icon-circle-z').css('background-color', 'rgb(25, 104, 157)'); } }