forked from jamesshore/lets_code_javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodo.txt
More file actions
49 lines (42 loc) · 1.72 KB
/
todo.txt
File metadata and controls
49 lines (42 loc) · 1.72 KB
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
WeeWikiPaint
Minimum Marketable Features:
+ marketing home page (episodes 1-32)
+ single-user painting on home page (episodes 33-200)
* replace home page with professional design (episodes 201+)
- replace 404 page with professional design
- multiple painting/erasing tools
- support more browsers (Android, IE10, IE11)
- collaborative painting
- wiki-fy the pages
- more complex painting?
- more collaborative features?
User Stories to finish current MMF:
* Web font
- Fix: drawing glitches that occur exiting drawing area that is flush against side of browser
- Release new design
Potential future stories:
- "Try me" text in drawing area
- Responsive design
- Accessibility
- Site monitoring and logging
- Performance
- Note: serious performance degradation in IE 8 as more lines drawn
- Scalability
- Deploy (including smoke test to ensure that div is in home page)
(needs to depend on 'build'; just running foreman could give us outdated files)
Engineering Tasks:
* Implement each design element
- Need to test arrow's background elements--is there a clean way of doing this?
- Consider using :before pseudoelement rather than a separate div
- Consider using Martin Grandrath's CSS triangle trick (see comments E225)
- Need to cache-bust stylesheet and bundle.js
- Manually confirm that styling works cross-platform
- What about alt tags? Semantic markup?
- Need to isolate Safari problem that occurs with getBoundingClientRect and getComputedStyle()
- See 'create iOS Safari failure' test (ref E229)
- Automatically convert psuedoclasses to regular classes in our tests?
Goal: expect(css("myHeadline").isCentered()).to.be(true)
To Do on current task:
- Integrate
Notes:
- NodeUnit default reporter has minor display issue on Windows