Commit 2185aaced3c5ae957d7dd2ad89bf8b9308d62f73

Authored by Nikita Kulshreshtha
1 parent f223a91f

updated msg

400-SOURCECODE/AIAHTML5.Web/app/controllers/LabExercController.js
... ... @@ -1394,7 +1394,7 @@ function ($scope, $rootScope, pages, log, $http, $timeout, DataService, $filter,
1394 1394 $scope.isSenderEmailValid = false;
1395 1395 // event.preventDefault();
1396 1396 $("#alertPopUp").css("display", "block");
1397   - $("#messageBody").text("Email Address address is empty");
  1397 + $("#messageBody").text("Email Address is empty");
1398 1398 return false;
1399 1399 }
1400 1400 if ($scope.validateEmail(sEmail)) {
... ... @@ -1414,7 +1414,7 @@ function ($scope, $rootScope, pages, log, $http, $timeout, DataService, $filter,
1414 1414 var userName = $("#userName").val();
1415 1415 if (userName.length == 0 || userName == 'undefined' || userName == ' ') {
1416 1416 $("#alertPopUp").css("display", "block");
1417   - $("#messageBody").text("Please enter User name");
  1417 + $("#messageBody").text("Please enter your name");
1418 1418 $scope.isUserNameValid = false;
1419 1419 return false;
1420 1420 }
... ... @@ -1425,7 +1425,7 @@ function ($scope, $rootScope, pages, log, $http, $timeout, DataService, $filter,
1425 1425 }
1426 1426 else {
1427 1427 $("#alertPopUp").css("display", "block");
1428   - $("#messageBody").text("User Name is not valid");
  1428 + $("#messageBody").text("Your Name is not valid");
1429 1429 $scope.isUserNameValid = false;
1430 1430 return false;
1431 1431 }
... ...
400-SOURCECODE/AIAHTML5.Web/app/views/LabExerc/lab-exercises-detail.html
... ... @@ -122,7 +122,7 @@
122 122 <div class="modal-content">
123 123 <div class="modal-header">
124 124 <!--<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>-->
125   - <h4 class="modal-title">Error</h4>
  125 + <h4 class="modal-title">Alert</h4>
126 126 </div>
127 127 <div class="modal-body ">
128 128 <div class="modal-body" id="messageBody" style="padding:10px;font-size:15px;">
... ...