Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Player Accessibility #16

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
90f1fed
#9 Preliminary support for screen readers with the clue list is movin…
FrenjaminBanklin May 13, 2019
00a8b60
#9 Clue list keyboard interactions work pretty well now.
FrenjaminBanklin May 13, 2019
a8e82c4
#9 Progress on updating the board reader - location of the current ce…
FrenjaminBanklin May 16, 2019
ea7bea4
#9 The letter grid now has some pretty verbose descriptive options fo…
FrenjaminBanklin May 17, 2019
e7df88d
#9 Tab order is worked out, letter grid highlighting fixed and it see…
FrenjaminBanklin May 20, 2019
bffcfc2
#9 Interaction with the pre-submit alert dialog is a lot better now.
FrenjaminBanklin May 20, 2019
365e44d
#9 Added interactions to clue list to read out the letters currently …
FrenjaminBanklin May 20, 2019
f39c51d
#9 Cleaned up some vocabulary, moved some stuff around, still trying …
FrenjaminBanklin May 24, 2019
8eb26ff
Attempting to circumvent JAWS key bindings.
FrenjaminBanklin May 24, 2019
ff4d2cc
Attempting to circumvent IE11 keyboard shortcuts.
FrenjaminBanklin May 24, 2019
2995616
#9 Ctrl+Alt+Key combos seem to function properly in IE11, since there…
FrenjaminBanklin May 28, 2019
ba069e5
#9 Added helper to clue list keyboard shortcuts to repeat the current…
FrenjaminBanklin May 28, 2019
408c8d3
#9 Simplified layout/styling of alert box. Made it possible to displa…
FrenjaminBanklin May 29, 2019
8b0ef64
#9 Letter tiles filled in by a free word now lock themselves to preve…
FrenjaminBanklin May 30, 2019
2d6d7f8
#9 The barest of bones test setup for the player, leaves so very much…
FrenjaminBanklin Jul 16, 2019
dcc8eaa
#9 Added some more explanatory text to keyboard instructions button's…
FrenjaminBanklin Jul 24, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/creator.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ describe('Creator', () => {

test('initExistingWidget sets up environment correctly', () => {
var demo = require('./demo.json')
var $scope = {
var $scope = {
$apply: jest.fn().mockImplementation(fn => {
if(angular.isFunction(fn)) fn()
}),
Expand Down Expand Up @@ -76,7 +76,7 @@ describe('Creator', () => {

test('onSaveClicked saves correctly', () => {
var demo = require('./demo.json')
var $scope = {
var $scope = {
$apply: jest.fn().mockImplementation(fn => {
if(angular.isFunction(fn)) fn()
}),
Expand Down
Loading