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
1922faf1
Commit
1922faf1
authored
Jul 19, 2017
by
Christina Roberts
Committed by
GitHub
Jul 19, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #15612 from edx/christina/fix-violations
Fix safe lint violation.
parents
0b945270
299fd098
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
cms/static/js/views/xblock_access_editor.js
+6
-3
No files found.
cms/static/js/views/xblock_access_editor.js
View file @
1922faf1
...
...
@@ -2,8 +2,8 @@
* XBlockAccessEditor is a view that allows the user to restrict access at the unit level on the container page.
* This view renders the button to restrict unit access into the appropriate place in the unit page.
*/
define
([
'js/views/baseview'
],
function
(
BaseView
)
{
define
([
'js/views/baseview'
,
'edx-ui-toolkit/js/utils/html-utils'
],
function
(
BaseView
,
HtmlUtils
)
{
'use strict'
;
var
XBlockAccessEditor
=
BaseView
.
extend
({
// takes XBlockInfo as a model
...
...
@@ -13,7 +13,10 @@ define(['js/views/baseview'],
},
render
:
function
()
{
this
.
$el
.
append
(
this
.
template
({}));
HtmlUtils
.
append
(
this
.
$el
,
HtmlUtils
.
HTML
(
this
.
template
({}))
);
return
this
;
}
});
...
...
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