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
60fb3cfb
Commit
60fb3cfb
authored
Jan 17, 2014
by
Greg Price
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make forum New Post buttons behave as buttons
JIRA: FOR-205
parent
2014d34c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
3 deletions
+6
-3
common/static/coffee/src/discussion/discussion_module_view.coffee
+3
-1
common/static/coffee/src/discussion/discussion_router.coffee
+1
-0
lms/templates/discussion/_discussion_course_navigation.html
+1
-1
lms/templates/discussion/_discussion_module.html
+1
-1
No files found.
common/static/coffee/src/discussion/discussion_module_view.coffee
View file @
60fb3cfb
...
@@ -5,6 +5,8 @@ if Backbone?
...
@@ -5,6 +5,8 @@ if Backbone?
"keydown .discussion-show"
:
"keydown .discussion-show"
:
(
event
)
->
DiscussionUtil
.
activateOnSpace
(
event
,
@
toggleDiscussion
)
(
event
)
->
DiscussionUtil
.
activateOnSpace
(
event
,
@
toggleDiscussion
)
"click .new-post-btn"
:
"toggleNewPost"
"click .new-post-btn"
:
"toggleNewPost"
"keydown .new-post-btn"
:
(
event
)
->
DiscussionUtil
.
activateOnSpace
(
event
,
@
toggleNewPost
)
"click .new-post-cancel"
:
"hideNewPost"
"click .new-post-cancel"
:
"hideNewPost"
"click .discussion-paginator a"
:
"navigateToPage"
"click .discussion-paginator a"
:
"navigateToPage"
...
@@ -19,7 +21,7 @@ if Backbone?
...
@@ -19,7 +21,7 @@ if Backbone?
else
else
@
page
=
1
@
page
=
1
toggleNewPost
:
(
event
)
-
>
toggleNewPost
:
(
event
)
=
>
event
.
preventDefault
()
event
.
preventDefault
()
if
!
@
newPostForm
if
!
@
newPostForm
@
toggleDiscussion
()
@
toggleDiscussion
()
...
...
common/static/coffee/src/discussion/discussion_router.coffee
View file @
60fb3cfb
...
@@ -16,6 +16,7 @@ if Backbone?
...
@@ -16,6 +16,7 @@ if Backbone?
@
nav
.
on
"thread:created"
,
@
navigateToThread
@
nav
.
on
"thread:created"
,
@
navigateToThread
@
newPost
=
$
(
'.new-post-article'
)
@
newPost
=
$
(
'.new-post-article'
)
$
(
'.new-post-btn'
).
bind
"click"
,
@
showNewPost
$
(
'.new-post-btn'
).
bind
"click"
,
@
showNewPost
$
(
'.new-post-btn'
).
bind
"keydown"
,
(
event
)
=>
DiscussionUtil
.
activateOnSpace
(
event
,
@
showNewPost
)
$
(
'.new-post-cancel'
).
bind
"click"
,
@
hideNewPost
$
(
'.new-post-cancel'
).
bind
"click"
,
@
hideNewPost
allThreads
:
->
allThreads
:
->
...
...
lms/templates/discussion/_discussion_course_navigation.html
View file @
60fb3cfb
...
@@ -4,6 +4,6 @@
...
@@ -4,6 +4,6 @@
<
%
block
name=
"extratabs"
>
<
%
block
name=
"extratabs"
>
% if has_permission(user, 'create_thread', course.id):
% if has_permission(user, 'create_thread', course.id):
<li
class=
"right"
><a
href=
"#"
class=
"new-post-btn"
><span
class=
"icon icon-edit new-post-icon"
></span>
${_("New Post")}
</a></li>
<li
class=
"right"
><a
href=
"#"
class=
"new-post-btn"
role=
"button"
><span
class=
"icon icon-edit new-post-icon"
></span>
${_("New Post")}
</a></li>
% endif
% endif
</
%
block>
</
%
block>
lms/templates/discussion/_discussion_module.html
View file @
60fb3cfb
...
@@ -3,5 +3,5 @@
...
@@ -3,5 +3,5 @@
<div
class=
"discussion-module"
data-discussion-id=
"${discussion_id | h}"
>
<div
class=
"discussion-module"
data-discussion-id=
"${discussion_id | h}"
>
<a
class=
"discussion-show control-button"
href=
"javascript:void(0)"
data-discussion-id=
"${discussion_id | h}"
role=
"button"
><span
class=
"show-hide-discussion-icon"
></span><span
class=
"button-text"
>
${_("Show Discussion")}
</span></a>
<a
class=
"discussion-show control-button"
href=
"javascript:void(0)"
data-discussion-id=
"${discussion_id | h}"
role=
"button"
><span
class=
"show-hide-discussion-icon"
></span><span
class=
"button-text"
>
${_("Show Discussion")}
</span></a>
<a
href=
"#"
class=
"new-post-btn"
><span
class=
"icon icon-edit new-post-icon"
></span>
${_("New Post")}
</a>
<a
href=
"#"
class=
"new-post-btn"
role=
"button"
><span
class=
"icon icon-edit new-post-icon"
></span>
${_("New Post")}
</a>
</div>
</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