diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2012-04-04 02:28:53 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2012-04-04 02:28:53 -0400 |
commit | 0013b799fa7d1737343f133c7a4581dec4a311f6 (patch) | |
tree | 8c8ed4b2f190bebfacf0e695b030a8aed5423b66 /src | |
parent | 1ccaed4533a290829db181d8398d0879b5f3bff1 (diff) |
Add TODO items
Diffstat (limited to 'src')
-rw-r--r-- | src/library_glut.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library_glut.js b/src/library_glut.js index 363f417f..13163c23 100644 --- a/src/library_glut.js +++ b/src/library_glut.js @@ -74,11 +74,11 @@ var LibraryGLUT = { /* The exact list is soooo hard to find in a canonical place! */ if (48 <= keycode && keycode <= 57) - return keycode; // numeric + return keycode; // numeric TODO handle shift? if (65 <= keycode && keycode <= 90) return event['shiftKey'] ? keycode : keycode + 32; if (106 <= keycode && keycode <= 111) - return keycode - 106 + 42; // *,+-./ + return keycode - 106 + 42; // *,+-./ TODO handle shift? switch (keycode) { case 27: // escape |