Skip to content

Commit 58bbd7e

Browse files
committed
Set modules for yuidoc
1 parent 04c3e17 commit 58bbd7e

File tree

17 files changed

+48
-971
lines changed

17 files changed

+48
-971
lines changed

VERSION.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@ Changeset:
99

1010
* Splitting the WireIt core from plugins
1111

12-
* upgrading to inputEx 0.5.0 (now in the "inputex" module)
12+
* upgrading to inputEx 0.5.0 (now in the "inputex" plugin)
1313

1414
* editor plugin
1515
* AccordionView on left panel for module categories
1616
* Toolbar positionning
1717
* ModuleProxy.js into its own file
1818
* WiringEditor now inherits from BaseEditor, which wraps general full-page editor functionnality
1919
* Example for a non-fullscreen editor
20+
* Don't save/load the wiring JSON as a string, let the adapter handle it
2021

2122
* Added "composable" plugin
2223
* Usage is demonstrated in the "jsBox" example

plugins/animations/js/Anim.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* Some utility classes to provide animations in WireIt
3+
* @module animations-plugin
4+
*/
5+
16
/**
27
* WireIt.util.Anim is a wrapper class for YAHOO.util.Anim, to redraw the wires associated with the given terminals while running the animation.
38
* @class Anim

plugins/composable/js/ComposableWiringEditor.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* Extend the WiringEditor with composable wirings
3+
* @module composable-plugin
4+
*/
5+
16
/**
27
* The ComposableWiringEditor
38
*

plugins/editor/examples/logicGates/logicGates.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -221,10 +221,10 @@ YAHOO.lang.extend(LightbulbContainer, LogicContainer, {
221221

222222
YAHOO.util.Event.onDOMReady( function() {
223223
try {
224-
var editor = new WireIt.WiringEditor(logicGatesLang);
225-
}catch(ex) {
226-
console.log(ex);
227-
}
224+
logicGates = new WireIt.WiringEditor(logicGatesLang);
225+
}catch(ex) {
226+
alert(ex);
227+
}
228228
});
229229

230230

plugins/editor/js/BaseEditor.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* WireIt editor
3+
* @module editor-plugin
4+
*/
15
(function() {
26
var util = YAHOO.util,lang = YAHOO.lang;
37
var Event = util.Event, Dom = util.Dom, Connect = util.Connect,JSON = lang.JSON,widget = YAHOO.widget;

plugins/grouping/js/Container.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
1+
/**
2+
* Some utility classes to provide grouping in the WiringEditor
3+
* @module grouping-plugin
4+
*/
5+
16

27
/**
38
* Add methods to container :
49
*/
510

611

7-
setOptions: function() {
12+
/*setOptions: function() {
813
914
1015
this.getGrouper = this.options.getGrouper
1116
1217
};
1318
19+
1420
onGroupButton: function(e, args) {
1521
Event.stopEvent(e);
1622
@@ -26,4 +32,4 @@ addedToGroup: function() {
2632
removedFromGroup: function() {
2733
if (YAHOO.lang.isValue(this.ddHandle))
2834
this.ddHandle.style.backgroundColor = "";
29-
},
35+
},*/

plugins/inputex/js/FormContainer.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/**
2+
* Include the form library inputEx + WirableField + FormContainer
3+
*
4+
* WARNING: This file should be placed between "inputEx/field.js" and all other inputEx fields
5+
*
6+
* See the inputEx website for documentation of the fields & forms: http://neyric.github.com/inputex
7+
*
8+
* @module inputex-plugin
9+
*/
110
/**
211
* Class used to build a container with inputEx forms
312
* @class FormContainer

plugins/inputex/js/WirableField.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// This file should be placed between "inputEx/field.js" and all other inputEx fields
2-
// see http://neyric.github.com/inputex
31
(function() {
42

53
var lang = YAHOO.lang;

plugins/labels/js/WireLabel.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Label support for WireIt
3+
* @module labels-plugin
4+
*/
15

26
this.options.label = options.label || "Test";
37

plugins/layout/js/Layout.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Layout Plugin
3+
* @module layout-plugin
4+
*/
15

26
/**
37
* Calculate the new position for the given layout and animate the layer to this position

0 commit comments

Comments
 (0)