Skip to content

Instantly share code, notes, and snippets.

@chandermani
Last active August 29, 2015 13:57
Show Gist options
  • Save chandermani/9447608 to your computer and use it in GitHub Desktop.
Save chandermani/9447608 to your computer and use it in GitHub Desktop.
$scope.duplicateMailRemoteCheck = function (email) {
return $timeout(function () {
return ['[email protected]', '[email protected]', '[email protected]'].indexOf(email) >= 0 ? false : true;
}, 2000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment