Lungo.Constants.js 458 B

123456789101112131415161718192021222324
  1. /**
  2. * Object with data-attributes (HTML5) with a special <markup>
  3. *
  4. * @namespace LUNGO
  5. * @class Constants
  6. *
  7. * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  8. * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
  9. */
  10. LUNGO.Constants = {
  11. ELEMENT = {
  12. SECTION: 'section',
  13. ARTICLE: 'article',
  14. ASIDE: 'aside'
  15. };
  16. CLASSES = {
  17. ACTIVE: 'active',
  18. SHOW: 'show',
  19. HIDE: 'hide'
  20. };
  21. };