SVG-Based content element (like
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'
}
}
});