Skip to content

Commit 85164e7

Browse files
committed
YAML headers
1 parent 56e8cf8 commit 85164e7

File tree

91 files changed

+1293
-812
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+1293
-812
lines changed

Source/Class/Chain.Wait.js

+15-9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,24 @@
11
/*
2-
Script: Chain.Wait.js
3-
Adds a method to inject pauses between chained events.
2+
---
43
5-
License:
6-
MIT-style license.
4+
script: Chain.Wait.js
75
8-
Authors:
9-
Aaron Newton
6+
description: value, Adds a method to inject pauses between chained events.
107
11-
@requires core/1.2.4: Chain Element Fx
12-
@requires MooTools.More
8+
license: MIT-style license.
139
14-
@provides Chain.Wait
10+
authors:
11+
- Aaron Newton
1512
13+
requires:
14+
- core:1.2.4/Chain
15+
- core:1.2.4/Element
16+
- core:1.2.4/Fx
17+
- /MooTools.More
18+
19+
provides: [Chain.Wait]
20+
21+
...
1622
*/
1723

1824
(function(){

Source/Class/Class.Binds.js

+13-9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
11
/*
2-
Script: Class.Binds.js
3-
Automagically binds specified methods in a class to the instance of the class.
2+
---
43
5-
License:
6-
MIT-style license.
4+
script: Class.Binds.js
75
8-
Authors:
9-
Aaron Newton
6+
description: Automagically binds specified methods in a class to the instance of the class.
107
11-
@requires core/1.2.4: Class
12-
@requires MooTools.More
8+
license: MIT-style license
139
14-
@provides Class.Binds
10+
authors:
11+
- Aaron Newton
1512
13+
requires:
14+
- core:1.2.4/Class
15+
- /MooTools.More
16+
17+
provides: [Class.Binds]
18+
19+
...
1620
*/
1721

1822
Class.Mutators.Binds = function(binds){

Source/Class/Class.Occlude.js

+14-9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
11
/*
2-
Script: Class.Occlude.js
3-
Prevents a class from being applied to a DOM element twice.
2+
---
43
5-
License:
6-
MIT-style license.
4+
script: Class.Occlude.js
75
8-
Authors:
9-
Aaron Newton
6+
description: Prevents a class from being applied to a DOM element twice.
107
11-
@requires core/1.2.4: Class Element
12-
@requires MooTools.More
8+
license: MIT-style license.
139
14-
@provides Class.Occlude
10+
authors:
11+
- Aaron Newton
1512
13+
requires:
14+
- core/1.2.4/Class
15+
- core:1.2.4/Element
16+
- /MooTools.More
17+
18+
provides: [Class.Occlude]
19+
20+
...
1621
*/
1722

1823
Class.Occlude = new Class({

Source/Class/Class.Refactor.js

+13-9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
11
/*
2-
Script: Class.Refactor.js
3-
Extends a class onto itself with new property, preserving any items attached to the class's namespace.
2+
---
43
5-
License:
6-
MIT-style license.
4+
script: Class.Refactor.js
75
8-
Authors:
9-
Aaron Newton
6+
description: Extends a class onto itself with new property, preserving any items attached to the class's namespace.
107
11-
@requires core/1.2.4: Class
12-
@requires MooTools.More
8+
license: MIT-style license
139
14-
@provides Class.refactor
10+
authors:
11+
- Aaron Newton
1512
13+
requires:
14+
- core:1.2.4/Class
15+
- /MooTools.More
16+
17+
provides: [Class.refactor]
18+
19+
...
1620
*/
1721

1822
Class.refactor = function(original, refactors){

Source/Core/Depender.js

+15-9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,24 @@
11
/*
2-
Script: Depender.js
3-
A stand alone dependency loader for the MooTools library.
2+
---
43
5-
License:
6-
MIT-style license.
4+
script: Depender.js
75
8-
Authors:
9-
Aaron Newton
6+
description: A stand alone dependency loader for the MooTools library.
107
11-
@requires core/1.2.4: Element.Events Request.JSON
12-
@requires MooTools.More Log
8+
license: MIT-style license
139
14-
@provides Depender
10+
authors:
11+
- Aaron Newton
1512
13+
requires:
14+
- core:1.2.4/Element.Events
15+
- core:1.2.4/Request.JSON
16+
- /MooTools.More
17+
- /Log
18+
19+
provides: Depender
20+
21+
...
1622
*/
1723

1824
var Depender = {

Source/Core/Lang.js

+13-9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
11
/*
2-
Script: MooTools.Lang.js
3-
Provides methods for localization.
2+
---
43
5-
License:
6-
MIT-style license.
4+
script: MooTools.Lang.js
75
8-
Authors:
9-
Aaron Newton
6+
description: Provides methods for localization.
107
11-
@requires core/1.2.4: Events
12-
@requires MooTools.More
8+
license: MIT-style license
139
14-
@provides MooTools.Lang
10+
authors:
11+
- Aaron Newton
1512
13+
requires:
14+
- core:1.2.4/Events
15+
- /MooTools.More
16+
17+
provides: [MooTools.Lang]
18+
19+
...
1620
*/
1721

1822
(function(){

Source/Core/Log.js

+15-11
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
11
/*
2-
Script: Log.js
3-
Provides basic logging functionality for plugins to implement.
2+
---
43
5-
License:
6-
MIT-style license.
4+
script: Log.js
75
8-
Authors:
9-
Guillermo Rauch
10-
Thomas Aylott
11-
Scott Kyle
6+
description: Provides basic logging functionality for plugins to implement.
127
13-
@requires core/1.2.4: Class
14-
@requires MooTools.More
8+
license: MIT-style license
159
16-
@provides Log
10+
authors:
11+
- Guillermo Rauch
12+
- Thomas Aylott
13+
- Scott Kyle
1714
15+
requires:
16+
- core:1.2.4/Class
17+
- /MooTools.More
18+
19+
provides: [Log]
20+
21+
...
1822
*/
1923

2024
(function(){

Source/Core/More.js

+14-10
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
11
/*
2-
Script: More.js
3-
MooTools More
2+
---
43
5-
License:
6-
MIT-style license.
4+
script: More.js
75
8-
Authors:
9-
Guillermo Rauch
10-
Thomas Aylott
11-
Scott Kyle
6+
description: MooTools More
127
13-
@requires core/1.2.4: MooTools
8+
license: MIT-style license
149
15-
@provides MooTools.More
10+
authors:
11+
- Guillermo Rauch
12+
- Thomas Aylott
13+
- Scott Kyle
1614
15+
requires:
16+
- core:1.2.4/MooTools
17+
18+
provides: [MooTools.More]
19+
20+
...
1721
*/
1822

1923
MooTools.More = {

Source/Drag/Drag.Move.js

+17-13
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,26 @@
11
/*
2-
Script: Drag.Move.js
3-
A Drag extension that provides support for the constraining of draggables to containers and droppables.
2+
---
43
5-
License:
6-
MIT-style license.
4+
script: Drag.Move.js
75
8-
Authors:
9-
Valerio Proietti
10-
Tom Occhinno
11-
Jan Kassens
12-
Aaron Newton
13-
Scott Kyle
6+
description: A Drag extension that provides support for the constraining of draggables to containers and droppables.
147
15-
@requires core/1.2.4: Element.Dimensions
16-
@requires Drag
8+
license: MIT-style license
179
18-
@provides Drag.Move
10+
authors:
11+
- Valerio Proietti
12+
- Tom Occhinno
13+
- Jan Kassens
14+
- Aaron Newton
15+
- Scott Kyle
1916
17+
requires:
18+
- core:1.2.4/Element.Dimensions
19+
- /Drag
20+
21+
provides: [Drag.Move]
22+
23+
...
2024
*/
2125

2226
Drag.Move = new Class({

Source/Drag/Drag.js

+17-11
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,25 @@
11
/*
2-
Script: Drag.js
3-
The base Drag Class. Can be used to drag and resize Elements using mouse events.
2+
---
43
5-
License:
6-
MIT-style license.
4+
script: Drag.js
75
8-
Authors:
9-
Valerio Proietti
10-
Tom Occhinno
11-
Jan Kassens
6+
description: The base Drag Class. Can be used to drag and resize Elements using mouse events.
127
13-
@requires core/1.2.4: Events Options Element.Event Element.Style
14-
@requires MooTools.More
8+
license: MIT-style license
159
16-
@provides Drag
10+
authors:
11+
- Valerio Proietti
12+
- Tom Occhinno
13+
- Jan Kassens
14+
15+
requires:
16+
- core:1.2.4/Events
17+
- core:1.2.4/Options
18+
- core:1.2.4/Element.Event
19+
- core:1.2.4/Element.Style
20+
- /MooTools.More
21+
22+
provides: [Drag]
1723
1824
*/
1925

Source/Drag/Slider.js

+16-9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,25 @@
11
/*
2-
Script: Slider.js
3-
Class for creating horizontal and vertical slider controls.
2+
---
43
5-
License:
6-
MIT-style license.
4+
script: Slider.js
75
8-
Authors:
9-
Valerio Proietti
6+
description: Class for creating horizontal and vertical slider controls.
107
11-
@requires core/1.2.4: Element.Dimensions
12-
@requires Class.Binds Drag Element.Dimensions Element.Measure
8+
license: MIT-style license
139
14-
@provides Slider
10+
authors:
11+
- Valerio Proietti
1512
13+
requires:
14+
- core:1.2.4/Element.Dimensions
15+
- /Class.Binds
16+
- /Drag
17+
- /Element.Dimensions
18+
- /Element.Measure
19+
20+
provides: [Slider]
21+
22+
...
1623
*/
1724

1825
var Slider = new Class({

0 commit comments

Comments
 (0)