Skip to content

Commit

Permalink
style(jshint): include missing ;
Browse files Browse the repository at this point in the history
  • Loading branch information
assisrafael committed Apr 7, 2015
1 parent 71560d5 commit d6e0e38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/br/phone/br-phone.js
Expand Up @@ -43,7 +43,7 @@ angular.module('ui.utils.masks.br.phone', [])
}

var formatedValue = applyPhoneMask(removeNonDigits(value));
var actualValue = removeNonDigits(formatedValue)
var actualValue = removeNonDigits(formatedValue);

if (ctrl.$viewValue !== formatedValue) {
ctrl.$setViewValue(formatedValue);
Expand Down
2 changes: 1 addition & 1 deletion src/us/phone/us-phone.js
Expand Up @@ -39,7 +39,7 @@ angular.module('ui.utils.masks.us.phone', [])
}

var formatedValue = applyPhoneMask(removeNonDigits(value));
var actualValue = removeNonDigits(formatedValue)
var actualValue = removeNonDigits(formatedValue);

if (ctrl.$viewValue !== formatedValue) {
ctrl.$setViewValue(formatedValue);
Expand Down

0 comments on commit d6e0e38

Please sign in to comment.