Browse code

Remove old version 5

Benjamin Roth authored on14/03/2021 15:27:00
Showing1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,88 +0,0 @@
1
-import {
2
-  $,
3
-  addClass,
4
-  removeClass,
5
-  hasClass,
6
-  toggleClass,
7
-  attr,
8
-  removeAttr,
9
-  data,
10
-  transform,
11
-  transition,
12
-  on,
13
-  off,
14
-  trigger,
15
-  transitionEnd,
16
-  outerWidth,
17
-  outerHeight,
18
-  offset,
19
-  css,
20
-  each,
21
-  html,
22
-  text,
23
-  is,
24
-  index,
25
-  eq,
26
-  append,
27
-  prepend,
28
-  next,
29
-  nextAll,
30
-  prev,
31
-  prevAll,
32
-  parent,
33
-  parents,
34
-  closest,
35
-  find,
36
-  children,
37
-  filter,
38
-  remove,
39
-  add,
40
-  styles,
41
-} from 'dom7/dist/dom7.modular';
42
-
43
-const Methods = {
44
-  addClass,
45
-  removeClass,
46
-  hasClass,
47
-  toggleClass,
48
-  attr,
49
-  removeAttr,
50
-  data,
51
-  transform,
52
-  transition,
53
-  on,
54
-  off,
55
-  trigger,
56
-  transitionEnd,
57
-  outerWidth,
58
-  outerHeight,
59
-  offset,
60
-  css,
61
-  each,
62
-  html,
63
-  text,
64
-  is,
65
-  index,
66
-  eq,
67
-  append,
68
-  prepend,
69
-  next,
70
-  nextAll,
71
-  prev,
72
-  prevAll,
73
-  parent,
74
-  parents,
75
-  closest,
76
-  find,
77
-  children,
78
-  filter,
79
-  remove,
80
-  add,
81
-  styles,
82
-};
83
-
84
-Object.keys(Methods).forEach((methodName) => {
85
-  $.fn[methodName] = $.fn[methodName] || Methods[methodName];
86
-});
87
-
88
-export default $;
Browse code

Initial commit

Benjamin Roth authored on19/05/2020 21:59:44
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,88 @@
1
+import {
2
+  $,
3
+  addClass,
4
+  removeClass,
5
+  hasClass,
6
+  toggleClass,
7
+  attr,
8
+  removeAttr,
9
+  data,
10
+  transform,
11
+  transition,
12
+  on,
13
+  off,
14
+  trigger,
15
+  transitionEnd,
16
+  outerWidth,
17
+  outerHeight,
18
+  offset,
19
+  css,
20
+  each,
21
+  html,
22
+  text,
23
+  is,
24
+  index,
25
+  eq,
26
+  append,
27
+  prepend,
28
+  next,
29
+  nextAll,
30
+  prev,
31
+  prevAll,
32
+  parent,
33
+  parents,
34
+  closest,
35
+  find,
36
+  children,
37
+  filter,
38
+  remove,
39
+  add,
40
+  styles,
41
+} from 'dom7/dist/dom7.modular';
42
+
43
+const Methods = {
44
+  addClass,
45
+  removeClass,
46
+  hasClass,
47
+  toggleClass,
48
+  attr,
49
+  removeAttr,
50
+  data,
51
+  transform,
52
+  transition,
53
+  on,
54
+  off,
55
+  trigger,
56
+  transitionEnd,
57
+  outerWidth,
58
+  outerHeight,
59
+  offset,
60
+  css,
61
+  each,
62
+  html,
63
+  text,
64
+  is,
65
+  index,
66
+  eq,
67
+  append,
68
+  prepend,
69
+  next,
70
+  nextAll,
71
+  prev,
72
+  prevAll,
73
+  parent,
74
+  parents,
75
+  closest,
76
+  find,
77
+  children,
78
+  filter,
79
+  remove,
80
+  add,
81
+  styles,
82
+};
83
+
84
+Object.keys(Methods).forEach((methodName) => {
85
+  $.fn[methodName] = $.fn[methodName] || Methods[methodName];
86
+});
87
+
88
+export default $;