Changes between Version 4 and Version 8 of Ticket #3740
- Timestamp:
- Nov 22, 2008, 11:55:53 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3740
- Property Owner changed from sjmiles to James Burke
-
Property
Milestone
changed from
1.2
tofuture
-
Ticket #3740 – Description
v4 v8 1 1 Dojo provides constants for the keyboard keys; dojo.keys. Similarly I recommend adding constants for 'mouse buttons' also, or they can be rolled into dojo.keys. 2 2 {{{ 3 3 dojo.mouseButtons = { 4 4 LEFT: dojo.isIE ? 1 : 0, … … 6 6 RIGHT: 2 7 7 } 8 }}}