Guest User

Untitled

a guest
Jul 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. function displayingNotes() {
  2. if (!($scope.overseasTravelTask.RegisteredKeeperName.toLowerCase()
  3. .indexOf("zenith") > -1 ||
  4. $scope.overseasTravelTask.RegisteredKeeperAddressLine1.toLowerCase()
  5. .indexOf("zenith")
  6. )
  7. )
  8. {
  9. $scope.calloutClass = 'callout-danger';
  10. $scope.calloutMessage = 'We (Zenith) cannot provide this vehicle with the necessary documents.';
  11. $scope.disableNextBtn = true;
  12. }
  13. else
  14. {
  15. $scope.calloutMessage = 'Please ask driver about this.';
  16. }
  17. }
  18.  
  19. $scope.overseasTravelTask.RegisteredKeeperAddressLine1.toLowerCase().indexOf("zenith")
Add Comment
Please, Sign In to add comment