forked from 0x2620/oxjs
more documentation, more semicolons, some fixmes
This commit is contained in:
parent
509745407b
commit
520eac7a22
11 changed files with 56 additions and 25 deletions
|
|
@ -1,7 +1,10 @@
|
|||
'use strict';
|
||||
|
||||
/*@
|
||||
Ox.ArrayEditable <f> Array Editable Object
|
||||
Ox.ArrayEditable <function> Array Editable
|
||||
(options, self) -> <f> Array Editable
|
||||
options <o> Options object
|
||||
self <o> Shared private variable
|
||||
@*/
|
||||
|
||||
Ox.ArrayEditable = function(options, self) {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,15 @@
|
|||
'use strict';
|
||||
|
||||
/*@
|
||||
Ox.ArrayInput <f> Array input
|
||||
Ox.ArrayInput <function> Array input
|
||||
(options, self) -> <f> Array input
|
||||
options <o> Options object
|
||||
label <s> string, ''
|
||||
max <n> integer, maximum number of items, 0 for all
|
||||
sort <b> fixme: this should probably be removed
|
||||
value <[]> value
|
||||
width <n|256> width
|
||||
self <o> Shared private variable
|
||||
@*/
|
||||
|
||||
Ox.ArrayInput = function(options, self) {
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ Ox.Filter = function(options, self) {
|
|||
} else if (self.options.query.operator == '') {
|
||||
self.options.query.operator = '&';
|
||||
}
|
||||
Ox.Log('Form', 'Ox.Filter self.options', self.options)
|
||||
Ox.Log('Form', 'Ox.Filter self.options', self.options);
|
||||
|
||||
self.conditionOperators = {
|
||||
boolean: [
|
||||
|
|
|
|||
|
|
@ -143,7 +143,7 @@ Ox.InputGroup = function(options, self) {
|
|||
if (key == 'value') {
|
||||
setValue();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
// fixme: is this used?
|
||||
that.getInputById = function(id) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue