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
7b8b1f9d
Commit
7b8b1f9d
authored
Aug 25, 2016
by
Jareer Ahsan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added keycodes dict for readability
parent
05b89f05
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
16 deletions
+30
-16
lms/static/js/my_courses_dropdown.js
+30
-16
No files found.
lms/static/js/my_courses_dropdown.js
View file @
7b8b1f9d
$
(
document
).
ready
(
function
()
{
'use strict'
;
// define variables for code legibility
// define variables for code legibility
var
dropdownMenuToggle
=
$
(
'.dropdown'
);
var
dropdownMenu
=
$
(
'.dropdown-menu'
);
var
menuItems
=
dropdownMenu
.
find
(
'a'
);
// bind menu toggle click for later use
var
keyCodes
=
{
leftArrow
:
37
,
upArrow
:
38
,
rightArrow
:
39
,
downArrow
:
40
,
tab
:
9
,
escape
:
27
,
space
:
32
};
// bind menu toggle click for later use
dropdownMenuToggle
.
toggle
(
function
()
{
dropdownMenu
.
addClass
(
'expanded'
).
find
(
'a'
).
first
().
focus
();
dropdownMenuToggle
.
addClass
(
'active'
).
attr
(
'aria-expanded'
,
'true'
);
...
...
@@ -15,47 +26,49 @@ $(document).ready(function() {
dropdownMenuToggle
.
removeClass
(
'active'
).
attr
(
'aria-expanded'
,
'false'
).
focus
();
});
// catch keypresses when focused on dropdownMenuToggle (we only care about spacebar keypresses here)
// catch keypresses when focused on dropdownMenuToggle (we only care about spacebar keypresses here)
dropdownMenuToggle
.
on
(
'keydown'
,
function
(
event
)
{
// if space key pressed
if
(
event
.
which
==
32
)
{
// if space key pressed
if
(
event
.
which
==
=
keyCodes
.
space
)
{
dropdownMenuToggle
.
click
();
event
.
preventDefault
();
}
});
// catch keypresses when inside dropdownMenu (we want to catch spacebar; escape; up arrow or shift+tab; and down arrow or tab)
// catch keypresses when inside dropdownMenu
// (we want to catch spacebar; escape; up arrow or shift+tab; and down arrow or tab)
dropdownMenu
.
on
(
'keydown'
,
function
(
event
)
{
catchKeyPress
(
$
(
this
),
event
);
});
function
catchKeyPress
(
object
,
event
)
{
// get currently focused item
// get currently focused item
var
focusedItem
=
jQuery
(
':focus'
);
// get the number of focusable items
// get the number of focusable items
var
numberOfMenuItems
=
menuItems
.
length
;
// get the index of the currently focused item
// get the index of the currently focused item
var
focusedItemIndex
=
menuItems
.
index
(
focusedItem
);
// var to store next focused item index
// var to store next focused item index
var
itemToFocusIndex
;
// if space key pressed
if
(
event
.
which
==
32
)
{
// if space key pressed
if
(
event
.
which
==
=
keyCodes
.
space
)
{
dropdownMenuToggle
.
click
();
event
.
preventDefault
();
}
// if escape key pressed
if
(
event
.
which
==
27
)
{
// if escape key pressed
if
(
event
.
which
==
=
keyCodes
.
escape
)
{
dropdownMenuToggle
.
click
();
event
.
preventDefault
();
}
// if up arrow key pressed or shift+tab else down key or tab is pressed
if
(
event
.
which
===
38
||
(
event
.
which
===
9
&&
event
.
shiftKey
))
{
if
(
event
.
which
===
keyCodes
.
upArrow
||
event
.
which
===
keyCodes
.
leftArrow
||
(
event
.
which
===
keyCodes
.
tab
&&
event
.
shiftKey
))
{
// if first item go to last
if
(
focusedItemIndex
===
0
)
{
menuItems
.
last
().
focus
();
...
...
@@ -64,7 +77,8 @@ $(document).ready(function() {
menuItems
.
get
(
itemToFocusIndex
).
focus
();
}
event
.
preventDefault
();
}
else
if
(
event
.
which
===
40
||
event
.
which
===
9
)
{
}
else
if
(
event
.
which
===
keyCodes
.
downArrow
||
event
.
which
===
keyCodes
.
rightArrow
||
event
.
which
===
keyCodes
.
tab
)
{
// if last item go to first
if
(
focusedItemIndex
===
numberOfMenuItems
-
1
)
{
menuItems
.
first
().
focus
();
...
...
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