Commit 2014d34c by Greg Price

Fix forum button keyboard activation

Previously, buttons were activated on pressing Enter, but the expected
behavior is to activate on pressing Space. Several JavaScript errors
that prevented various buttons from properly activating via the keyboard
are also fixed.
parent 42c543b7
...@@ -105,7 +105,7 @@ class @DiscussionViewSpecHelper ...@@ -105,7 +105,7 @@ class @DiscussionViewSpecHelper
expect(view.toggleVote).toHaveBeenCalled() expect(view.toggleVote).toHaveBeenCalled()
view.toggleVote.reset() view.toggleVote.reset()
button.trigger($.Event("keydown", {which: 13})) button.trigger($.Event("keydown", {which: 13}))
expect(view.toggleVote).toHaveBeenCalled() expect(view.toggleVote).not.toHaveBeenCalled()
view.toggleVote.reset() view.toggleVote.reset()
button.trigger($.Event("keydown", {which: 32})) button.trigger($.Event("keydown", {which: 32}))
expect(view.toggleVote).not.toHaveBeenCalled() expect(view.toggleVote).toHaveBeenCalled()
...@@ -2,8 +2,8 @@ if Backbone? ...@@ -2,8 +2,8 @@ if Backbone?
class @DiscussionModuleView extends Backbone.View class @DiscussionModuleView extends Backbone.View
events: events:
"click .discussion-show": "toggleDiscussion" "click .discussion-show": "toggleDiscussion"
"keypress .discussion-show": "keydown .discussion-show":
(event) -> DiscussionUtil.activateOnEnter(event, toggleDiscussion) (event) -> DiscussionUtil.activateOnSpace(event, @toggleDiscussion)
"click .new-post-btn": "toggleNewPost" "click .new-post-btn": "toggleNewPost"
"click .new-post-cancel": "hideNewPost" "click .new-post-cancel": "hideNewPost"
"click .discussion-paginator a": "navigateToPage" "click .discussion-paginator a": "navigateToPage"
...@@ -38,13 +38,13 @@ if Backbone? ...@@ -38,13 +38,13 @@ if Backbone?
event.preventDefault() event.preventDefault()
@newPostForm.slideUp(300) @newPostForm.slideUp(300)
hideDiscussion: -> hideDiscussion: =>
@$("section.discussion").slideUp() @$("section.discussion").slideUp()
@toggleDiscussionBtn.removeClass('shown') @toggleDiscussionBtn.removeClass('shown')
@toggleDiscussionBtn.find('.button-text').html(gettext("Show Discussion")) @toggleDiscussionBtn.find('.button-text').html(gettext("Show Discussion"))
@showed = false @showed = false
toggleDiscussion: (event) -> toggleDiscussion: (event) =>
if @showed if @showed
@hideDiscussion() @hideDiscussion()
else else
......
...@@ -88,8 +88,8 @@ class @DiscussionUtil ...@@ -88,8 +88,8 @@ class @DiscussionUtil
"notifications_status" : "/notification_prefs/status/" "notifications_status" : "/notification_prefs/status/"
}[name] }[name]
@activateOnEnter: (event, func) -> @activateOnSpace: (event, func) ->
if event.which == 13 if event.which == 32
event.preventDefault() event.preventDefault()
func(event) func(event)
......
...@@ -4,8 +4,8 @@ if Backbone? ...@@ -4,8 +4,8 @@ if Backbone?
events: events:
"click .discussion-flag-abuse": "toggleFlagAbuse" "click .discussion-flag-abuse": "toggleFlagAbuse"
"keypress .discussion-flag-abuse": "keydown .discussion-flag-abuse":
(event) -> DiscussionUtil.activateOnEnter(event, toggleFlagAbuse) (event) -> DiscussionUtil.activateOnSpace(event, @toggleFlagAbuse)
attrRenderer: attrRenderer:
endorsed: (endorsed) -> endorsed: (endorsed) ->
...@@ -107,7 +107,7 @@ if Backbone? ...@@ -107,7 +107,7 @@ if Backbone?
@model.bind('change', @renderPartialAttrs, @) @model.bind('change', @renderPartialAttrs, @)
toggleFollowing: (event) -> toggleFollowing: (event) =>
event.preventDefault() event.preventDefault()
$elem = $(event.target) $elem = $(event.target)
url = null url = null
...@@ -122,14 +122,14 @@ if Backbone? ...@@ -122,14 +122,14 @@ if Backbone?
url: url url: url
type: "POST" type: "POST"
toggleFlagAbuse: (event) -> toggleFlagAbuse: (event) =>
event.preventDefault() event.preventDefault()
if window.user.id in @model.get("abuse_flaggers") or (DiscussionUtil.isFlagModerator and @model.get("abuse_flaggers").length > 0) if window.user.id in @model.get("abuse_flaggers") or (DiscussionUtil.isFlagModerator and @model.get("abuse_flaggers").length > 0)
@unFlagAbuse() @unFlagAbuse()
else else
@flagAbuse() @flagAbuse()
flagAbuse: -> flagAbuse: =>
url = @model.urlFor("flagAbuse") url = @model.urlFor("flagAbuse")
DiscussionUtil.safeAjax DiscussionUtil.safeAjax
$elem: @$(".discussion-flag-abuse") $elem: @$(".discussion-flag-abuse")
...@@ -144,7 +144,7 @@ if Backbone? ...@@ -144,7 +144,7 @@ if Backbone?
temp_array.push(window.user.id) temp_array.push(window.user.id)
@model.set('abuse_flaggers', temp_array) @model.set('abuse_flaggers', temp_array)
unFlagAbuse: -> unFlagAbuse: =>
url = @model.urlFor("unFlagAbuse") url = @model.urlFor("unFlagAbuse")
DiscussionUtil.safeAjax DiscussionUtil.safeAjax
$elem: @$(".discussion-flag-abuse") $elem: @$(".discussion-flag-abuse")
......
...@@ -5,10 +5,10 @@ if Backbone? ...@@ -5,10 +5,10 @@ if Backbone?
"click .vote-btn": "click .vote-btn":
(event) -> @toggleVote(event) (event) -> @toggleVote(event)
"keydown .vote-btn": "keydown .vote-btn":
(event) -> DiscussionUtil.activateOnEnter(event, @toggleVote) (event) -> DiscussionUtil.activateOnSpace(event, @toggleVote)
"click .action-follow": "toggleFollowing" "click .action-follow": "toggleFollowing"
"keypress .action-follow": "keydown .action-follow":
(event) -> DiscussionUtil.activateOnEnter(event, toggleFollowing) (event) -> DiscussionUtil.activateOnSpace(event, @toggleFollowing)
"click .expand-post": "expandPost" "click .expand-post": "expandPost"
"click .collapse-post": "collapsePost" "click .collapse-post": "collapsePost"
......
...@@ -5,14 +5,14 @@ if Backbone? ...@@ -5,14 +5,14 @@ if Backbone?
"click .vote-btn": "click .vote-btn":
(event) -> @toggleVote(event) (event) -> @toggleVote(event)
"keydown .vote-btn": "keydown .vote-btn":
(event) -> DiscussionUtil.activateOnEnter(event, @toggleVote) (event) -> DiscussionUtil.activateOnSpace(event, @toggleVote)
"click .discussion-flag-abuse": "toggleFlagAbuse" "click .discussion-flag-abuse": "toggleFlagAbuse"
"keypress .discussion-flag-abuse": "keydown .discussion-flag-abuse":
(event) -> DiscussionUtil.activateOnEnter(event, toggleFlagAbuse) (event) -> DiscussionUtil.activateOnSpace(event, @toggleFlagAbuse)
"click .admin-pin": "togglePin" "click .admin-pin": "togglePin"
"click .action-follow": "toggleFollowing" "click .action-follow": "toggleFollowing"
"keypress .action-follow": "keydown .action-follow":
(event) -> DiscussionUtil.activateOnEnter(event, toggleFollowing) (event) -> DiscussionUtil.activateOnSpace(event, @toggleFollowing)
"click .action-edit": "edit" "click .action-edit": "edit"
"click .action-delete": "_delete" "click .action-delete": "_delete"
"click .action-openclose": "toggleClosed" "click .action-openclose": "toggleClosed"
......
...@@ -4,13 +4,13 @@ if Backbone? ...@@ -4,13 +4,13 @@ if Backbone?
"click .vote-btn": "click .vote-btn":
(event) -> @toggleVote(event) (event) -> @toggleVote(event)
"keydown .vote-btn": "keydown .vote-btn":
(event) -> DiscussionUtil.activateOnEnter(event, @toggleVote) (event) -> DiscussionUtil.activateOnSpace(event, @toggleVote)
"click .action-endorse": "toggleEndorse" "click .action-endorse": "toggleEndorse"
"click .action-delete": "_delete" "click .action-delete": "_delete"
"click .action-edit": "edit" "click .action-edit": "edit"
"click .discussion-flag-abuse": "toggleFlagAbuse" "click .discussion-flag-abuse": "toggleFlagAbuse"
"keypress .discussion-flag-abuse": "keydown .discussion-flag-abuse":
(event) -> DiscussionUtil.activateOnEnter(event, toggleFlagAbuse) (event) -> DiscussionUtil.activateOnSpace(event, @toggleFlagAbuse)
$: (selector) -> $: (selector) ->
@$el.find(selector) @$el.find(selector)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment