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
b8bc1d01
Commit
b8bc1d01
authored
Jul 31, 2013
by
Chris Dodge
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove redudent asset_url return value when uploading files
parent
3dbe4c18
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
2 deletions
+1
-2
cms/djangoapps/contentstore/views/assets.py
+0
-1
cms/static/js/views/assets.js
+1
-1
No files found.
cms/djangoapps/contentstore/views/assets.py
View file @
b8bc1d01
...
...
@@ -194,7 +194,6 @@ def upload_asset(request, org, course, coursename):
}
response
=
JsonResponse
(
response_payload
)
response
[
'asset_url'
]
=
StaticContent
.
get_static_path_from_location
(
content
.
location
)
return
response
...
...
cms/static/js/views/assets.js
View file @
b8bc1d01
...
...
@@ -96,7 +96,7 @@ function displayFinishedUpload(xhr) {
}
var
resp
=
JSON
.
parse
(
xhr
.
responseText
);
$
(
'.upload-modal .embeddable-xml-input'
).
val
(
xhr
.
getResponseHeader
(
'asset_url'
)
);
$
(
'.upload-modal .embeddable-xml-input'
).
val
(
resp
.
portable_url
);
$
(
'.upload-modal .embeddable'
).
show
();
$
(
'.upload-modal .file-name'
).
hide
();
$
(
'.upload-modal .progress-fill'
).
html
(
resp
.
msg
);
...
...
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