Browse Source

New namespace CONSTANTS

@soyjavi 14 năm trước cách đây
mục cha
commit
0f26863365
1 tập tin đã thay đổi với 22 bổ sung0 xóa
  1. 22 0
      src/Lungo.Constants.js

+ 22 - 0
src/Lungo.Constants.js

@@ -0,0 +1,22 @@
+/**
+ * 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'
+    };
+};