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
7102c23d
Commit
7102c23d
authored
Apr 10, 2013
by
jarv
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1841 from MITx/fix/btalbot/loginregister-actions
Fix/btalbot/loginregister actions
parents
7a0ddb24
22a56fdd
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
5 deletions
+11
-5
lms/static/sass/multicourse/_account.scss
+1
-1
lms/templates/login.html
+5
-2
lms/templates/register.html
+5
-2
No files found.
lms/static/sass/multicourse/_account.scss
View file @
7102c23d
...
...
@@ -391,7 +391,7 @@
button
[
type
=
"submit"
]
{
@extend
.button-primary
;
&
:disabled
{
&
:disabled
,
&
.is-disabled
{
opacity
:
0
.3
;
cursor
:
default
!
important
;
}
...
...
lms/templates/login.html
View file @
7102c23d
...
...
@@ -30,6 +30,8 @@
(
function
()
{
$
(
document
).
delegate
(
'#login-form'
,
'ajax:success'
,
function
(
data
,
json
,
xhr
)
{
$
(
this
).
find
(
'.form-actions #submit'
).
addClass
(
'is-disabled'
);
if
(
json
.
success
)
{
$
(
'.message.submission-error'
).
removeClass
(
'is-shown'
);
toggleSubmitButton
();
...
...
@@ -51,13 +53,14 @@
function
toggleSubmitButton
(
e
)
{
var
$msgError
=
$
(
'form .status.submission-error'
);
var
$submitButton
=
$
(
'form .form-actions #submit'
);
var
$submitButtonCopy
=
$submitButton
.
html
();
if
(
!
$msgError
.
hasClass
(
'is-shown'
))
{
$submitButton
.
prop
(
'disabled'
,
true
);
$submitButton
.
prop
(
'disabled'
,
true
)
.
html
(
'Processing your account information …'
)
;
}
else
{
$submitButton
.
prop
(
'disabled'
,
false
);
$submitButton
.
prop
(
'disabled'
,
false
)
.
html
(
$submitButtonCopy
)
;
}
}
</script>
...
...
lms/templates/register.html
View file @
7102c23d
...
...
@@ -36,6 +36,8 @@
(
function
()
{
$
(
document
).
delegate
(
'#register-form'
,
'ajax:success'
,
function
(
data
,
json
,
xhr
)
{
$
(
this
).
find
(
'.form-actions #submit'
).
addClass
(
'is-disabled'
);
if
(
json
.
success
)
{
$
(
'.message.submission-error'
).
removeClass
(
'is-shown'
);
toggleSubmitButton
();
...
...
@@ -52,13 +54,14 @@
function
toggleSubmitButton
(
e
)
{
var
$msgError
=
$
(
'form .status.submission-error'
);
var
$submitButton
=
$
(
'form .form-actions #submit'
).
prop
(
'disabled'
,
true
);
var
$submitButtonCopy
=
$submitButton
.
html
();
if
(
!
$msgError
.
hasClass
(
'is-shown'
))
{
$submitButton
.
prop
(
'disabled'
,
true
);
$submitButton
.
prop
(
'disabled'
,
true
)
.
html
(
'Processing your registration …'
)
;
}
else
{
$submitButton
.
prop
(
'disabled'
,
false
);
$submitButton
.
prop
(
'disabled'
,
false
)
.
html
(
$submitButtonCopy
)
;
}
}
</script>
...
...
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