Details
-
Type:
Bug
-
Status: CLOSED
-
Priority:
Critical
-
Resolution: Fixed
-
Affects Version/s: 2.9.1
-
Fix Version/s: 2.9.2
-
Component/s: Accessibility, Profile
-
Labels:None
-
Environment:sakai/trunk on Oracle - Built: 09/17/12 12:00 - Sakai Revision: 112506 (Kernel 1.4.0-SNAPSHOT)- Server sakai-nightly.uits.iupui.edu
-
Previous Issue Keys:PRFL-768
Description
The change picture and multiple information section edit links do not become visible when they receive keyboard focus. Keyboard-only users will not be able to edit these profile information sections if they cannot tab to the links and visually see the links have focus.
Recommended remediation:
show the links when they receive keyboard.
$(".edit-image-button").focus(
function ()
);
$(".edit-image-button").blur(
function () { $(this).addClass("offscreen"); }
);
$(".edit-button").focus(
function () { $(this).removeClass("offscreen"); }
);
$(".edit-button").blur(
function ()
);
Gliffy Diagrams
Zeplin
Attachments
Issue Links
- mentioned in
-
Wiki Page Loading...