| 123456789101112131415161718192021222324 |
- /**
- * Object with data-attributes (HTML5) with a special <markup>
- *
- * @namespace LUNGO
- * @class Constants
- *
- * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
- * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
- */
- LUNGO.Constants = {
- ELEMENT = {
- SECTION: 'section',
- ARTICLE: 'article',
- ASIDE: 'aside'
- };
- CLASSES = {
- ACTIVE: 'active',
- SHOW: 'show',
- HIDE: 'hide'
- };
- };
|