Lungo.Constants.js 414 B

12345678910111213141516171819202122
  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. };
  19. };