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
ac25b02c
Commit
ac25b02c
authored
Mar 14, 2013
by
cahrens
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor updates.
parent
9a7b0fb5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
cms/djangoapps/contentstore/views.py
+4
-1
cms/static/js/views/checklists_view.js
+0
-1
No files found.
cms/djangoapps/contentstore/views.py
View file @
ac25b02c
...
...
@@ -1322,7 +1322,10 @@ def get_checklists(request, org, course, name):
return
render_to_response
(
'checklists.html'
,
{
'checklists'
:
course_module
.
metadata
[
key
]})
{
'context_course'
:
course_module
,
'checklists'
:
course_module
.
metadata
[
key
]
})
@login_required
...
...
cms/static/js/views/checklists_view.js
View file @
ac25b02c
...
...
@@ -22,7 +22,6 @@ CMS.Views.Checklists = Backbone.View.extend({
},
toggleTask
:
function
(
e
)
{
(
e
).
preventDefault
();
$
(
e
.
target
).
closest
(
'.task'
).
toggleClass
(
'is-completed'
);
},
...
...
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