Requires

Provides

Section.js

SVG-Based content element (like

in html5)

License:
Public domain (http://unlicense.org).
Authors:
Yaroslaff Fedin
  1. 25
  2. 26
  3. 27
  4. 28
  5. 29
  6. 30
  7. 31
  8. 32
  9. 33
  10. 34
  11. 35
  12. 36
  13. 37
  14. 38
  15. 39
  16. 40
  17. 41
  18. 42
  19. 43
  20. 44
  21. 45
  22. 46
  23. 47
  24. 48
  25. 49
  26. 50
  27. 51
  28. 52
  29. 53
  30. 54
  31. 55
  32. 56
  33. 57
  34. 58
  35. 59
  36. 60
  37. 61
  38. 62
  39. 63
  40. 64
  41. 65
  42. 66
  43. 67
LSD.Widget.Section = new Class({ Extends: LSD.Widget.Paint, options: { tag: 'section', element: { tag: 'section' } } }); LSD.Widget.Header = new Class({ Extends: LSD.Widget.Section, options: { tag: 'header', element: { tag: 'header' } } }); LSD.Widget.Footer = new Class({ Extends: LSD.Widget.Section, options: { tag: 'footer', element: { tag: 'footer' } } }); LSD.Widget.Nav = new Class({ Extends: LSD.Widget.Section, options: { tag: 'nav', element: { tag: 'nav' } } });