Requires

Provides

Menu.js

Menu widget base class

License:
Public domain (http://unlicense.org).
Authors:
Yaroslaff Fedin
  1. 22
  2. 23
  3. 24
  4. 25
  5. 26
  6. 27
  7. 28
  8. 29
  9. 30
  10. 31
  11. 32
  12. 33
  13. 34
  14. 35
  15. 36
  16. 37
  17. 38
  18. 39
  19. 40
  20. 41
  21. 42
  22. 43
  23. 44
  24. 45
  25. 46
LSD.Widget.Menu = new Class({ Extends: LSD.Widget.Paint, options: { tag: 'menu', element: { tag: 'menu' } } }); LSD.Widget.Menu.Command = new Class({ Extends: LSD.Widget.Paint, options: { tag: 'command', element: { tag: 'command' } } }); (function(Command) { Command.Command = Command.Checkbox = Command.Radio = Command; })(LSD.Widget.Menu.Command);