1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
TODO
====
# 2013.04.02:
- '<' and '>' keys to move a story from one column to another
- esc should exit out of tasks drop-down
- change $(document).on('keydown') to something other than document, unless
the key binding really needs it
> Create mechanism to select stories on board using arrow keys
- 'p' to point the story
- 'L' to open a new tab with the iteration in list view
- If you press numbers and then Enter in a short enough amount of time, the
story corresponding to the numbers you typed in gets selected
- Documentation
- Apple-Enter to update a story from within the story edit modal
- 'c' to comment on story in the story list (or at least something to
permalink to the story in the story list)
- keyboard command to add a new story
/ Create a KeyboardCommands/KeyboardShortcuts class to manage abstraction of
setting up shortcuts, separate shortcuts into related groups, and handle
activation and deactivation of groups of shortcuts
- BUG: disable arrow keys on input focus
- Scroll down when you get to the bottom of the window and continue pressing
the down arrow (same in reverse for up arrow)
# 2013.02.28:
- '<' and '>' keys to move a story from one column to another
v Disable keyboard shortcuts when an input field is focused
(all except for esc)
- esc should exit out of tasks drop-down
- change $(document).on('keydown') to something other than document, unless
the key binding really needs it
> Create mechanism to select stories on board using arrow keys
- 'p' to point the story
- 'L' to open a new tab with the iteration in list view
- If you press numbers and then Enter in a short enough amount of time, the
story corresponding to the numbers you typed in gets selected
- Documentation
- Apple-Enter to update a story from within the story edit modal
- 'c' to comment on story in the story list (or at least something to
permalink to the story in the story list)
- keyboard command to add a new story
/ Create a KeyboardCommands/KeyboardShortcuts class to manage abstraction of
setting up shortcuts, separate shortcuts into related groups, and handle
activation and deactivation of groups of shortcuts
- BUG: disable arrow keys on input focus
# 2013.02.26:
- '<' and '>' keys to move a story from one column to another
- Disable keyboard shortcuts when an input field is focused
(all except for esc)
- esc should exit out of tasks drop-down
- change $(document).on('keydown') to something other than document, unless
the key binding really needs it
> Create mechanism to select stories on board using arrow keys
- 'p' to point the story
- 'L' to open a new tab with the iteration in list view
- If you press numbers and then Enter in a short enough amount of time, the
story corresponding to the numbers you typed in gets selected
- Documentation
- Apple-Enter to update a story from within the story edit modal
- 'c' to comment on story in the story list (or at least something to
permalink to the story in the story list)
- keyboard command to add a new story
# 2013.02.25:
- Apple-Enter to update a story from within the story edit modal
- 'c' to comment on story in the story list (or at least something to
permalink to the story in the story list)
# 2013.02.24:
v Add a Chrome options panel to allow users to select the refresh interval
- If you press numbers and then Enter in a short enough amount of time, the
story corresponding to the numbers you typed in gets selected
- Documentation
- 'p' to point the story
- 'L' to open a new tab with the iteration in list view
- Disable keyboard shortcuts when an input field is focused
(all except for esc)
- esc should exit out of tasks drop-down
- change $(document).on('keydown') to something other than document, unless
the key binding really needs it
# 2013.02.23:
> Create mechanism to select stories on board using arrow keys
v Use 'i' key (or other that makes sense) to bring up story info/edit modal
v 'a' to bring up modal and focus on Assignees field
- Documentation
v Esc should work to close the story info modal
- 'p' to point the story
v 'b' key to open the top nav drop-down and allow you to switch between
iteration boards
- 'L' to open a new tab with the iteration in list view
v 't' to open and close tasks drop-down. On open focus to Summary field
- Disable keyboard shortcuts when an input field is focused
(all except for esc)
- esc should exit out of tasks drop-down
- change $(document).on('keydown') to something other than document, unless
the key binding really needs it
# 2013.02.22:
- Create mechanism to select stories on board using arrow keys
- Use 'i' key (or other that makes sense) to bring up story info/edit modal
- 'a' to bring up modal and focus on Assignees field
- '<' and '>' keys to move a story from one column to another
- 'b' key to open the top nav drop-down and allow you to switch between
iteration boards
- 'L' to open a new tab with the iteration in list view
- 't' to open and close tasks drop-down. On open focus to Summary field
- Add a Chrome options panel to allow users to select the refresh interval
- If you press numbers and then Enter in a short enough amount of time, the
story corresponding to the numbers you typed in gets selected
|