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
d3986c88
Commit
d3986c88
authored
Aug 03, 2015
by
Ned Batchelder
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #9161 from edx/andya/fix-forums-bug
Fix forums escaping bug
parents
f286152f
96e14e3f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletions
+8
-1
common/static/coffee/spec/discussion/view/discussion_thread_list_view_spec.coffee
+7
-0
common/static/common/templates/discussion/thread-list-item.underscore
+1
-1
No files found.
common/static/coffee/spec/discussion/view/discussion_thread_list_view_spec.coffee
View file @
d3986c88
...
...
@@ -224,6 +224,13 @@ describe "DiscussionThreadListView", ->
checkThreadsOrdering
(
view
,
sort_order
,
type
)
expect
(
view
.
$el
.
find
(
".forum-nav-thread-comments-count:visible"
).
length
).
toEqual
(
if
type
==
"votes"
then
0
else
4
)
expect
(
view
.
$el
.
find
(
".forum-nav-thread-votes-count:visible"
).
length
).
toEqual
(
if
type
==
"votes"
then
4
else
0
)
if
type
==
"votes"
expect
(
_
.
map
(
view
.
$el
.
find
(
".forum-nav-thread-votes-count"
),
(
element
)
->
$
(
element
).
text
().
trim
()
)
).
toEqual
([
"+25 votes"
,
"+20 votes"
,
"+42 votes"
,
"+12 votes"
])
it
"with sort preference date"
,
->
checkRender
(
@
threads
,
"date"
,
[
"Thread1"
,
"Thread4"
,
"Thread2"
,
"Thread3"
])
...
...
common/static/common/templates/discussion/thread-list-item.underscore
View file @
d3986c88
...
...
@@ -64,7 +64,7 @@
);
%>
<span class="forum-nav-thread-votes-count">
+<%
-
interpolate(fmt, {
+<%
=
interpolate(fmt, {
votes_count: votes['up_count'],
span_start: '<span class="sr">',
span_end: '</span>'
...
...
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