forked from mootools/mootools-more
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.json
94 lines (70 loc) · 2.07 KB
/
scripts.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"Fx": {
"Fx.Slide": {
"deps": ["None"],
"desc": "Effect to slide an element in and out of view."
},
"Fx.Scroll": {
"deps": ["None"],
"desc": "Effect to smoothly scroll any element, including the window."
},
"Fx.Elements": {
"deps": ["None"],
"desc": "Effect to change any number of CSS properties of any number of Elements."
}
},
"Drag": {
"Drag": {
"deps": ["None"],
"desc": "The base Drag Class. Can be used to drag and resize Elements using mouse events."
},
"Drag.Move": {
"deps": ["Drag"],
"desc": "A Drag extension that provides support for the constraining of draggables to containers and droppables."
}
},
"Utilities": {
"Hash.Cookie": {
"deps": ["None"],
"desc": "Class for creating, reading, and deleting browser Cookies in JSON format."
},
"Color": {
"deps": ["None"],
"desc": "Class for creating and manipulating colors in JavaScript. Supports HSB -> RGB Conversions and vice versa."
},
"Group": {
"deps": ["None"],
"desc": "Class for monitoring collections of events."
},
"Assets": {
"deps": ["None"],
"desc": "Provides methods to dynamically load JavaScript, CSS, and Image files into the document."
}
},
"Interface": {
"Sortables": {
"deps": ["Drag.Move"],
"desc": "Class for creating a drag and drop sorting interface for lists of items."
},
"Tips": {
"deps": ["None"],
"desc": "Class for creating nice tooltips that follow the mouse cursor when hovering over an element."
},
"SmoothScroll": {
"deps": ["Fx.Scroll"],
"desc": "Class for creating a smooth scrolling effect to all internal links on the page."
},
"Slider": {
"deps": ["Drag"],
"desc": "Class for creating horizontal and vertical slider controls."
},
"Scroller": {
"deps": ["None"],
"desc": "Class which scrolls the contents of any Element (including the window) when the mouse reaches the Element's boundaries."
},
"Accordion": {
"deps": ["Fx.Elements"],
"desc": "An Fx.Elements extension which allows you to easily create accordion type controls."
}
}
}