forked from 0x2620/oxjs
add documentation stubs
This commit is contained in:
parent
b3fce3a28a
commit
509745407b
102 changed files with 613 additions and 163 deletions
|
|
@ -1,5 +1,11 @@
|
|||
'use strict';
|
||||
|
||||
/*@
|
||||
Ox.FormPanel <function> Form Panel
|
||||
(options[, self]) -> <o> Form Panel
|
||||
options <o> Options
|
||||
self <o> Shared private variable
|
||||
@*/
|
||||
Ox.FormPanel = function(options, self) {
|
||||
|
||||
self = self || {};
|
||||
|
|
@ -147,6 +153,10 @@ Ox.FormPanel = function(options, self) {
|
|||
return index;
|
||||
}
|
||||
|
||||
/*@
|
||||
renderPrintVersion <f> renderPrintVersion
|
||||
(title) -> <s>
|
||||
@*/
|
||||
that.renderPrintVersion = function(title) {
|
||||
var $printVersion = $('<div>').css({overflowY: 'auto'});
|
||||
$printVersion.append(
|
||||
|
|
@ -185,6 +195,9 @@ Ox.FormPanel = function(options, self) {
|
|||
return $printVersion;
|
||||
};
|
||||
|
||||
/*@
|
||||
values <f> values
|
||||
@*/
|
||||
that.values = function() {
|
||||
var values = {};
|
||||
self.options.form.forEach(function(section, i) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue