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
c0ce7cf6
Unverified
Commit
c0ce7cf6
authored
Dec 12, 2017
by
Brittney Exline
Committed by
GitHub
Dec 12, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #16880 from edx/bexline/registration_fix_ie11
ENT-800 Fix IE11 Broken Submit button on Registration Page
parents
0380c5fc
c110a9ac
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
lms/static/js/student_account/views/RegisterView.js
+3
-3
No files found.
lms/static/js/student_account/views/RegisterView.js
View file @
c0ce7cf6
...
...
@@ -179,7 +179,7 @@
// Show each input tip
$
(
this
).
children
().
each
(
function
()
{
if
(
inputTipSelectorsHidden
.
in
cludes
(
$
(
this
).
attr
(
'class'
))
)
{
if
(
inputTipSelectorsHidden
.
in
dexOf
(
$
(
this
).
attr
(
'class'
))
>=
0
)
{
$
(
this
).
removeClass
(
'hidden'
);
}
});
...
...
@@ -193,7 +193,7 @@
// Hide each input tip
$
(
this
).
children
().
each
(
function
()
{
if
(
inputTipSelectors
.
in
cludes
(
$
(
this
).
attr
(
'class'
))
)
{
if
(
inputTipSelectors
.
in
dexOf
(
$
(
this
).
attr
(
'class'
))
>=
0
)
{
$
(
this
).
addClass
(
'hidden'
);
}
});
...
...
@@ -207,7 +207,7 @@
// Initially hide each input tip
input
.
children
().
each
(
function
()
{
if
(
inputTipSelectors
.
in
cludes
(
$
(
this
).
attr
(
'class'
))
)
{
if
(
inputTipSelectors
.
in
dexOf
(
$
(
this
).
attr
(
'class'
))
>=
0
)
{
$
(
this
).
addClass
(
'hidden'
);
}
});
...
...
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