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
259b73e1
Commit
259b73e1
authored
Nov 30, 2017
by
christopher lee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
XSS fixes
cms/templates/js/xblock-outline.underscore
parent
17453acb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
18 deletions
+18
-18
cms/templates/js/xblock-outline.underscore
+18
-18
No files found.
cms/templates/js/xblock-outline.underscore
View file @
259b73e1
<% if (parentInfo) { %>
<li class="outline-item outline-item-<%
= xblockType %> <%= includesChildren ? 'is-collapsible' : '' %> is-draggable <%=
isCollapsed ? 'is-collapsed' : '' %>"
data-parent="<%
= parentInfo.get('id') %>" data-locator="<%=
xblockInfo.get('id') %>">
<li class="outline-item outline-item-<%
- xblockType %> <%- includesChildren ? 'is-collapsible' : '' %> is-draggable <%-
isCollapsed ? 'is-collapsed' : '' %>"
data-parent="<%
- parentInfo.get('id') %>" data-locator="<%-
xblockInfo.get('id') %>">
<span class="draggable-drop-indicator draggable-drop-indicator-before"><span class="icon fa fa-caret-right" aria-hidden="true"></span></span>
<div class="wrapper-xblock-header">
<div class="wrapper-xblock-header-primary">
<% if (includesChildren) { %>
<h3 class="xblock-title expand-collapse <%
=
isCollapsed ? 'expand' : 'collapse' %>"
title="<%
=
interpolate(
<h3 class="xblock-title expand-collapse <%
-
isCollapsed ? 'expand' : 'collapse' %>"
title="<%
-
interpolate(
gettext('Collapse/Expand this %(xblock_type)s'), { xblock_type: xblockTypeDisplayName }, true
) %>"
>
...
...
@@ -17,7 +17,7 @@
<% } %>
<% if (xblockInfo.get('studio_url') && xblockInfo.get('category') !== 'chapter') { %>
<a href="<%
=
xblockInfo.get('studio_url') %>"><%- xblockInfo.get('display_name') %></a>
<a href="<%
-
xblockInfo.get('studio_url') %>"><%- xblockInfo.get('display_name') %></a>
<% } else { %>
<span class="wrapper-xblock-field is-editable" data-field="display_name">
<span class="xblock-field-value"><%- xblockInfo.get('display_name') %></span>
...
...
@@ -28,9 +28,9 @@
<div class="item-actions">
<ul class="actions-list">
<li class="action-item action-delete">
<a href="#" data-tooltip="<%
=
gettext('Delete') %>" class="delete-button action-button">
<a href="#" data-tooltip="<%
-
gettext('Delete') %>" class="delete-button action-button">
<span class="icon fa fa-remove" aria-hidden="true"></span>
<span class="sr"><%
=
gettext('Delete') %></span>
<span class="sr"><%
-
gettext('Delete') %></span>
</a>
</li>
</ul>
...
...
@@ -40,7 +40,7 @@
<% if (xblockInfo.get('release_date')) { %>
<div class="meta-info">
<span class="icon fa fa-clock-o" aria-hidden="true"></span>
<%
= gettext('Released:') %> <%=
xblockInfo.get('release_date') %>
<%
- gettext('Released:') %> <%-
xblockInfo.get('release_date') %>
</div>
<% } %>
...
...
@@ -54,30 +54,30 @@
<% } %>
<% if (!parentInfo && xblockInfo.get('child_info') && xblockInfo.get('child_info').children.length === 0) { %>
<div class="no-content add-xblock-component">
<p><%
=
gettext("You haven't added any content to this course yet.") %>
<a href="#" class="button button-new" data-category="<%
=
childCategory %>"
data-parent="<%
= xblockInfo.get('id') %>" data-default-name="<%=
defaultNewChildName %>"
title="<%
=
interpolate(
<p><%
-
gettext("You haven't added any content to this course yet.") %>
<a href="#" class="button button-new" data-category="<%
-
childCategory %>"
data-parent="<%
- xblockInfo.get('id') %>" data-default-name="<%-
defaultNewChildName %>"
title="<%
-
interpolate(
gettext('Click to add a new %(xblock_type)s'), { xblock_type: defaultNewChildName }, true
) %>"
>
<span class="icon fa fa-plus" aria-hidden="true"></span><%
=
addChildLabel %>
<span class="icon fa fa-plus" aria-hidden="true"></span><%
-
addChildLabel %>
</a>
</p>
</div>
<% } else { %>
<ol class="sortable-list sortable-<%
=
xblockType %>-list">
<ol class="sortable-list sortable-<%
-
xblockType %>-list">
</ol>
<% if (childType) { %>
<div class="add-xblock-component">
<a href="#" class="button button-new" data-category="<%
=
childCategory %>"
data-parent="<%
= xblockInfo.get('id') %>" data-default-name="<%=
defaultNewChildName %>"
title="<%
=
interpolate(
<a href="#" class="button button-new" data-category="<%
-
childCategory %>"
data-parent="<%
- xblockInfo.get('id') %>" data-default-name="<%-
defaultNewChildName %>"
title="<%
-
interpolate(
gettext('Click to add a new %(xblock_type)s'), { xblock_type: defaultNewChildName }, true
) %>"
>
<span class="icon fa fa-plus" aria-hidden="true"></span><%
=
addChildLabel %>
<span class="icon fa fa-plus" aria-hidden="true"></span><%
-
addChildLabel %>
</a>
</div>
<% } %>
...
...
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