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
b8c1dba1
Commit
b8c1dba1
authored
Jan 29, 2013
by
Don Mitchell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Catch save error and throw it in the user's face (bug 147). May need to
add catches in more places or put in $.ajaxSetup?
parent
3669ea5c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletions
+4
-1
cms/static/js/views/settings/main_settings_view.js
+4
-1
No files found.
cms/static/js/views/settings/main_settings_view.js
View file @
b8c1dba1
...
@@ -55,7 +55,10 @@ CMS.Views.ValidatingView = Backbone.View.extend({
...
@@ -55,7 +55,10 @@ CMS.Views.ValidatingView = Backbone.View.extend({
var
newVal
=
$
(
event
.
currentTarget
).
val
();
var
newVal
=
$
(
event
.
currentTarget
).
val
();
if
(
currentVal
!=
newVal
)
{
if
(
currentVal
!=
newVal
)
{
this
.
clearValidationErrors
();
this
.
clearValidationErrors
();
this
.
model
.
save
(
field
,
newVal
);
this
.
model
.
save
(
field
,
newVal
,
{
error
:
function
(
model
,
error
)
{
// this handler is for the client:server communication not the vlidation errors which handleValidationError catches
if
(
error
.
responseText
)
window
.
alert
(
"Error: "
+
error
.
responseText
);
}});
return
true
;
return
true
;
}
}
else
return
false
;
else
return
false
;
...
...
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