Changeset 14086
- Timestamp:
- 06/20/08 10:43:04 (5 months ago)
- Files:
-
- 1 modified
-
dijit/trunk/Menu.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dijit/trunk/Menu.js
r14072 r14086 516 516 _onClick: function(/*Event*/ e){ 517 517 // summary: Clicking this item just toggles its state 518 this.setAttribute("checked", !this.checked); 518 if(!this.disabled){ 519 this.setAttribute("checked", !this.checked); 520 } 519 521 this.inherited(arguments); 520 522 },