Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
8fa31a80
Commit
8fa31a80
authored
Apr 13, 2017
by
noraiz-anwar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix firefox issue for email field with extra whitespaces
parent
be5c4fad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
lms/static/js/student_account/views/FormView.js
+6
-0
No files found.
lms/static/js/student_account/views/FormView.js
View file @
8fa31a80
...
@@ -157,6 +157,12 @@
...
@@ -157,6 +157,12 @@
$label
=
$form
.
find
(
'label[for='
+
$el
.
attr
(
'id'
)
+
']'
);
$label
=
$form
.
find
(
'label[for='
+
$el
.
attr
(
'id'
)
+
']'
);
key
=
$el
.
attr
(
'name'
)
||
false
;
key
=
$el
.
attr
(
'name'
)
||
false
;
// Due to a bug in firefox, whitespaces in email type field are not removed.
// TODO: Remove this code once firefox bug is resolved.
if
(
key
===
'email'
)
{
$el
.
val
(
$el
.
val
().
trim
());
}
if
(
key
)
{
if
(
key
)
{
test
=
this
.
validate
(
elements
[
i
]);
test
=
this
.
validate
(
elements
[
i
]);
if
(
test
.
isValid
)
{
if
(
test
.
isValid
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment