Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
X
xblock-mentoring
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
OpenEdx
xblock-mentoring
Commits
e2924962
Commit
e2924962
authored
May 27, 2014
by
Xavier Antoviaque
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3 from mtyaka/dbl-qmark-bug
Specify contentType in ajax POST request.
parents
864d2bc4
dd7c236c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletions
+8
-1
mentoring/public/js/mentoring.js
+8
-1
No files found.
mentoring/public/js/mentoring.js
View file @
e2924962
...
@@ -85,7 +85,14 @@ function MentoringBlock(runtime, element) {
...
@@ -85,7 +85,14 @@ function MentoringBlock(runtime, element) {
}
}
}
}
var
handlerUrl
=
runtime
.
handlerUrl
(
element
,
'submit'
);
var
handlerUrl
=
runtime
.
handlerUrl
(
element
,
'submit'
);
$
.
post
(
handlerUrl
,
JSON
.
stringify
(
data
)).
success
(
handleSubmitResults
);
$
.
ajax
(
handlerUrl
,
{
type
:
'POST'
,
// Set contentType to prevent jQuery from modifying the JSON data.
// (see: http://bugs.jquery.com/ticket/8417)
contentType
:
'application/json; charset: UTF-8'
,
data
:
JSON
.
stringify
(
data
),
success
:
handleSubmitResults
});
});
});
if
(
submit_dom
.
length
)
{
if
(
submit_dom
.
length
)
{
...
...
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