summaryrefslogtreecommitdiff
path: root/web-ui/app/js/mixins
diff options
context:
space:
mode:
authorDuda Dornelles <ddornell@thoughtworks.com>2014-09-03 14:35:48 -0300
committerDuda Dornelles <ddornell@thoughtworks.com>2014-09-03 14:35:48 -0300
commit3bd6b15a18d5fc89506fb40becd7ad7b7449d7da (patch)
treeabc3a2eff7ca0adfa1e2bc42271252fd4ed4a852 /web-ui/app/js/mixins
parent2b35e3c95e239db22fe189f8b0ac09ae02948259 (diff)
reactivating reply/reply all/forward; deactivating reply draft
Diffstat (limited to 'web-ui/app/js/mixins')
-rw-r--r--web-ui/app/js/mixins/with_mail_edit_base.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web-ui/app/js/mixins/with_mail_edit_base.js b/web-ui/app/js/mixins/with_mail_edit_base.js
index ea0ecaaf..4710cb74 100644
--- a/web-ui/app/js/mixins/with_mail_edit_base.js
+++ b/web-ui/app/js/mixins/with_mail_edit_base.js
@@ -169,7 +169,7 @@ define(
}
function emailFormatChecker(email) {
- var emailFormat = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
+ var emailFormat = /[^\s@]+@[^\s@]+\.[^\s@]+$/;
return emailFormat.test(email);
}