Advertisement
Guest User

Untitled

a guest
May 31st, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. .controller('tipController', function($scope) {
  2.  
  3. // Numpad
  4. $scope.checkTotal = '0.00';
  5.  
  6. $scope.clicked = function (label) {
  7. if($scope.checkTotal === '0.00') {
  8. $scope.checkTotal = label;
  9. } else {
  10. $scope.checkTotal += label;
  11. }
  12. };
  13.  
  14. // Prevent multiple decimals
  15. $scope.clickedDot = function() {
  16. if (($scope.checkTotal.indexOf('.') < 0) || ($scope.checkTotal === '0.00')) {
  17. if ($scope.checkTotal === '0.00') {
  18. $scope.checkTotal = '0.';
  19. } else {
  20. $scope.checkTotal += '.';
  21. }
  22. }
  23. };
  24.  
  25. $scope.del = function () {
  26. $scope.checkTotal.substring(0, length - 1);
  27. };
  28.  
  29. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement