Skip to content

Instantly share code, notes, and snippets.

@windwp
Last active May 20, 2016 14:33
Show Gist options
  • Save windwp/aeb3c946ad1ce51826d266ba1fe27357 to your computer and use it in GitHub Desktop.
Save windwp/aeb3c946ad1ce51826d266ba1fe27357 to your computer and use it in GitHub Desktop.
Ionic snippet
@ViewChild('rootTabs') tabRef:Tabs;
function emailValidator(control) {
var EMAIL_REGEXP = /^[a-z0-9!#$%&'*+\/=?^_`{|}~.-]+@[a-z0-9]([a-z0-9-]*[a-z0-9])?(\.[a-z0-9]([a-z0-9-]*[a-z0-9])?)*$/i;
if (!EMAIL_REGEXP.test(control.value)) {
return {email: true};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment