Advertisement
Guest User

Untitled

a guest
May 5th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. .controller('loginCtrl',['$scope', 'md5', function($scope, md5) {
  2.  
  3. $scope.$watch('email', function () {
  4. var usuario = $scope.user.email;
  5. alert(md5.createHash(usuario || ''));
  6. });
  7.  
  8. }])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement