diff --git a/source/Ox.UI/js/Bar/Bar.js b/source/Ox.UI/js/Bar/Bar.js index 91e50686..cba10a19 100644 --- a/source/Ox.UI/js/Bar/Bar.js +++ b/source/Ox.UI/js/Bar/Bar.js @@ -1,11 +1,11 @@ 'use strict'; /*@ Ox.Bar Bar - ([options[, self]]) -> Bar object options Options object orientation Orientation ('horizontal' or 'vertical') size can be 'small', 'medium', 'large' or number self Shared private variable + ([options[, self]]) -> Bar object @*/ Ox.Bar = function(options, self) { self = self || {}; diff --git a/source/Ox.UI/js/Bar/Progressbar.js b/source/Ox.UI/js/Bar/Progressbar.js index 7cd4a99f..45a0522f 100644 --- a/source/Ox.UI/js/Bar/Progressbar.js +++ b/source/Ox.UI/js/Bar/Progressbar.js @@ -2,12 +2,6 @@ /*@ Ox.Progressbar Progress Bar - ([options[, self]]) -> Progress Bar - cancel cancelled - complete completed - pause paused - restart restart - resume resumed options Options object cancelled If true, progress bar is cancelled paused If true, progress bar is paused @@ -20,6 +14,12 @@ Ox.Progressbar Progress Bar showTooltips If true, buttons have tooltips width Width in px self Shared private variable + ([options[, self]]) -> Progress Bar + cancel cancelled + complete completed + pause paused + restart restart + resume resumed @*/ Ox.Progressbar = function(options, self) { diff --git a/source/Ox.UI/js/Bar/Resizebar.js b/source/Ox.UI/js/Bar/Resizebar.js index ac378db4..be4e73fc 100644 --- a/source/Ox.UI/js/Bar/Resizebar.js +++ b/source/Ox.UI/js/Bar/Resizebar.js @@ -1,7 +1,6 @@ 'use strict'; /*@ Ox.Resizebar Resizebar - ([options[, self]]) -> Resizebar object options Options object collapsed inital collapse state collapsible collapse state can be changed @@ -14,6 +13,7 @@ Ox.Resizebar Resizebar size default size tooltip tooltip or not self Shared private variable + ([options[, self]]) -> Resizebar object @*/ Ox.Resizebar = function(options, self) { diff --git a/source/Ox.UI/js/Bar/Tabbar.js b/source/Ox.UI/js/Bar/Tabbar.js index bad3f64f..c0436819 100644 --- a/source/Ox.UI/js/Bar/Tabbar.js +++ b/source/Ox.UI/js/Bar/Tabbar.js @@ -1,11 +1,11 @@ 'use strict'; /*@ Ox.Tabbar Tabbar - ([options[, self]]) -> Tabbar object options Options object selected selected item tabs tabs self Shared private variable + ([options[, self]]) -> Tabbar object @*/ Ox.Tabbar = function(options, self) { diff --git a/source/Ox.UI/js/Code/DocPanel.js b/source/Ox.UI/js/Code/DocPanel.js index f6c2fdb4..b5988cfd 100644 --- a/source/Ox.UI/js/Code/DocPanel.js +++ b/source/Ox.UI/js/Code/DocPanel.js @@ -2,12 +2,6 @@ /*@ Ox.DocPanel Documentation Panel - ([options[, self]]) -> Documentation Panel - load Fires once all docs are loaded - items [o] Array of doc items - tests Fires once all tests finished - results [o] Array of results - select select options Options object collapsible If true, the list can be collabsed element Default content @@ -29,6 +23,12 @@ Ox.DocPanel Documentation Panel size Default list size stripComments If true, strip comments in source code self Shared private variable + ([options[, self]]) -> Documentation Panel + load Fires once all docs are loaded + items [o] Array of doc items + tests Fires once all tests finished + results [o] Array of results + select select @*/ Ox.DocPanel = function(options, self) { diff --git a/source/Ox.UI/js/Code/ExamplePage.js b/source/Ox.UI/js/Code/ExamplePage.js index 8a71e3e7..f38926ef 100644 --- a/source/Ox.UI/js/Code/ExamplePage.js +++ b/source/Ox.UI/js/Code/ExamplePage.js @@ -2,9 +2,9 @@ /*@ Ox.ExamplePage Example Page - ([options[, self]]) -> Example Page options Options self Shared private variable + ([options[, self]]) -> Example Page @*/ Ox.ExamplePage = function(options, self) { diff --git a/source/Ox.UI/js/Code/ExamplePanel.js b/source/Ox.UI/js/Code/ExamplePanel.js index 461749e0..051d5187 100644 --- a/source/Ox.UI/js/Code/ExamplePanel.js +++ b/source/Ox.UI/js/Code/ExamplePanel.js @@ -2,12 +2,12 @@ /*@ Ox.ExamplePanel Example Panel + options Options + self Shared private variable ([options[, self]]) -> Example Panel load load select select id selected example - options Options - self Shared private variable @*/ Ox.ExamplePanel = function(options, self) { diff --git a/source/Ox.UI/js/Code/SourceViewer.js b/source/Ox.UI/js/Code/SourceViewer.js index 659b68aa..35a203b2 100644 --- a/source/Ox.UI/js/Code/SourceViewer.js +++ b/source/Ox.UI/js/Code/SourceViewer.js @@ -2,9 +2,9 @@ /*@ Ox.SourceViewer Source Viewer - ([options[, self]]) -> Source Viewer options Options self Shared private variable + ([options[, self]]) -> Source Viewer @*/ Ox.SourceViewer = function(options, self) { diff --git a/source/Ox.UI/js/Code/SyntaxHighlighter.js b/source/Ox.UI/js/Code/SyntaxHighlighter.js index 4840b288..be541f76 100644 --- a/source/Ox.UI/js/Code/SyntaxHighlighter.js +++ b/source/Ox.UI/js/Code/SyntaxHighlighter.js @@ -2,7 +2,6 @@ /*@ Ox.SyntaxHighlighter Syntax Highlighter - ([options[, self]]) -> Syntax Highlighter options Options file JavaScript file (alternative to `source` option) lineLength If larger than zero, show edge of page @@ -18,6 +17,7 @@ Ox.SyntaxHighlighter Syntax Highlighter stripComments If true, strip comments tabSize Number of spaces per tab self Shared private variable + ([options[, self]]) -> Syntax Highlighter @*/ Ox.SyntaxHighlighter = function(options, self) { diff --git a/source/Ox.UI/js/Core/App.js b/source/Ox.UI/js/Core/App.js index 47623fcf..a6890bcf 100644 --- a/source/Ox.UI/js/Core/App.js +++ b/source/Ox.UI/js/Core/App.js @@ -2,13 +2,13 @@ /*@ Ox.App Basic application instance that communicates with a JSON API - ([options]) -> App object - load App loaded options Options object name App name timeout Request timeout type HTTP Request type, i.e. 'GET' or 'POST' url JSON API URL + ([options]) -> App object + load App loaded @*/ Ox.App = function(options) { diff --git a/source/Ox.UI/js/Core/Container.js b/source/Ox.UI/js/Core/Container.js index 17332e31..590646b4 100644 --- a/source/Ox.UI/js/Core/Container.js +++ b/source/Ox.UI/js/Core/Container.js @@ -6,9 +6,9 @@ // would append (length - 1)? /*@ Ox.Container Container element - ([options[, self]]) -> Container object options Options object self Shared private variable + ([options[, self]]) -> Container object @*/ Ox.Container = function(options, self) { var that = Ox.Element({}, self) diff --git a/source/Ox.UI/js/Core/Event.js b/source/Ox.UI/js/Core/Event.js index d81efa7d..e8a55851 100644 --- a/source/Ox.UI/js/Core/Event.js +++ b/source/Ox.UI/js/Core/Event.js @@ -1,7 +1,7 @@ 'use strict'; /*@ -Ox.Event Used internally for events +Ox.Event Event controller @*/ Ox.Event = (function() { diff --git a/source/Ox.UI/js/Core/Focus.js b/source/Ox.UI/js/Core/Focus.js index fc2955b5..5a0b8da4 100644 --- a/source/Ox.UI/js/Core/Focus.js +++ b/source/Ox.UI/js/Core/Focus.js @@ -1,7 +1,7 @@ 'use strict'; /*@ -Ox.Focus Basic focus handler +Ox.Focus Basic focus controller @*/ Ox.Focus = (function() { diff --git a/source/Ox.UI/js/Core/JQueryElement.js b/source/Ox.UI/js/Core/JQueryElement.js index a99f0ceb..ac7c3477 100644 --- a/source/Ox.UI/js/Core/JQueryElement.js +++ b/source/Ox.UI/js/Core/JQueryElement.js @@ -2,8 +2,8 @@ /*@ Ox.JQueryElement Wrapper for jQuery - ($element) -> Wrapped jQuery DOM element $element jQuery DOM Element + ($element) -> Wrapped jQuery DOM element @*/ Ox.JQueryElement = function($element) { //@ id Unique id diff --git a/source/Ox.UI/js/Core/Keyboard.js b/source/Ox.UI/js/Core/Keyboard.js index ca51c8c8..011e87e4 100644 --- a/source/Ox.UI/js/Core/Keyboard.js +++ b/source/Ox.UI/js/Core/Keyboard.js @@ -1,7 +1,7 @@ 'use strict'; /*@ -Ox.Keyboard Basic keyboard handler +Ox.Keyboard Basic keyboard controller @*/ Ox.Keyboard = (function() { diff --git a/source/Ox.UI/js/Core/LoadingIcon.js b/source/Ox.UI/js/Core/LoadingIcon.js index 15676ef0..e5ea4b2b 100644 --- a/source/Ox.UI/js/Core/LoadingIcon.js +++ b/source/Ox.UI/js/Core/LoadingIcon.js @@ -2,10 +2,10 @@ /*@ Ox.LoadingIcon Loading Icon Element - ([options[, self]]) -> Loading Icon Element options Options object size size of icon self Shared private variable + ([options[, self]]) -> Loading Icon Element @*/ Ox.LoadingIcon = function(options, self) { diff --git a/source/Ox.UI/js/Core/Request.js b/source/Ox.UI/js/Core/Request.js index 88176df7..0dfa51b4 100644 --- a/source/Ox.UI/js/Core/Request.js +++ b/source/Ox.UI/js/Core/Request.js @@ -1,12 +1,12 @@ 'use strict'; /*@ -Ox.Request Basic request handler object -FIXME: options is not a property, just documenting defaults -options Options object - timeout request timeout - type request type, possible values POST, GET, PUT, DELETE - url request url +Ox.Request Basic request controller +# FIXME: options is not a property, just documenting defaults +# options Options object +# timeout request timeout +# type request type, possible values POST, GET, PUT, DELETE +# url request url @*/ Ox.Request = (function() { @@ -74,11 +74,6 @@ Ox.Request = (function() { $element.bindEvent.apply(this, arguments); }, - // fixme: remove - _leakCache: function() { - return cache; - }, - /*@ options get/set options () -> get options diff --git a/source/Ox.UI/js/Form/ArrayEditable.js b/source/Ox.UI/js/Form/ArrayEditable.js index 0682e31e..3c36b4a0 100644 --- a/source/Ox.UI/js/Form/ArrayEditable.js +++ b/source/Ox.UI/js/Form/ArrayEditable.js @@ -2,6 +2,8 @@ /*@ Ox.ArrayEditable Array Editable + options Options object + self Shared private variable ([options[, self]]) -> Array Editable add add blur blur @@ -15,8 +17,6 @@ Ox.ArrayEditable Array Editable selectnone selectnone select select submit submit - options Options object - self Shared private variable @*/ Ox.ArrayEditable = function(options, self) { diff --git a/source/Ox.UI/js/Form/ArrayInput.js b/source/Ox.UI/js/Form/ArrayInput.js index 04f8c4cb..93955ce4 100644 --- a/source/Ox.UI/js/Form/ArrayInput.js +++ b/source/Ox.UI/js/Form/ArrayInput.js @@ -2,7 +2,6 @@ /*@ Ox.ArrayInput Array input - ([options[, self]]) -> Array input options Options object label string, '' max integer, maximum number of items, 0 for all @@ -10,7 +9,8 @@ Ox.ArrayInput Array input value <[]> value width width self Shared private variable - change change + ([options[, self]]) -> Array input + change change @*/ Ox.ArrayInput = function(options, self) { diff --git a/source/Ox.UI/js/Form/Button.js b/source/Ox.UI/js/Form/Button.js index 1b0fcf70..3dd5437e 100644 --- a/source/Ox.UI/js/Form/Button.js +++ b/source/Ox.UI/js/Form/Button.js @@ -2,7 +2,6 @@ /*@ Ox.Button Button Object - ([options[, self]]) -> Button Object options Options object If a button is both selectable and has two values, its value is the selected id, and the second value corresponds to the selected state @@ -19,8 +18,9 @@ Ox.Button Button Object values <[o]|[]> [{id, title}, {id, title}] width Button width self Shared private variable - click non-selectable button was clicked - change selectable button was clicked + ([options[, self]]) -> Button Object + click non-selectable button was clicked + change selectable button was clicked @*/ Ox.Button = function(options, self) { diff --git a/source/Ox.UI/js/Form/ButtonGroup.js b/source/Ox.UI/js/Form/ButtonGroup.js index 1c426d50..4b537db4 100644 --- a/source/Ox.UI/js/Form/ButtonGroup.js +++ b/source/Ox.UI/js/Form/ButtonGroup.js @@ -2,7 +2,6 @@ /*@ Ox.ButtonGroup ButtonGroup Object - ([options[, self]]) -> ButtonGroup Object options Options object buttons <[o]> array of button options max integer, maximum number of selected buttons, 0 for all @@ -10,7 +9,8 @@ Ox.ButtonGroup ButtonGroup Object selectable if true, buttons are selectable type string, 'image' or 'text' self Shared private variable - change {id, value} selection within a group changed + ([options[, self]]) -> ButtonGroup Object + change {id, value} selection within a group changed @*/ Ox.ButtonGroup = function(options, self) { diff --git a/source/Ox.UI/js/Form/Checkbox.js b/source/Ox.UI/js/Form/Checkbox.js index f8e20b01..a3dafdaf 100644 --- a/source/Ox.UI/js/Form/Checkbox.js +++ b/source/Ox.UI/js/Form/Checkbox.js @@ -2,8 +2,6 @@ /*@ Ox.Checkbox Checkbox Element - ([options[, self]]) -> Checkbox Element - change triggered when value changes options Options object disabled if true, checkbox is disabled group if true, checkbox is part of a group @@ -13,6 +11,8 @@ Ox.Checkbox Checkbox Element value if true, checkbox is checked width width in px self Shared private variable + ([options[, self]]) -> Checkbox Element + change triggered when value changes @*/ Ox.Checkbox = function(options, self) { diff --git a/source/Ox.UI/js/Form/CheckboxGroup.js b/source/Ox.UI/js/Form/CheckboxGroup.js index df281df5..a966c8eb 100644 --- a/source/Ox.UI/js/Form/CheckboxGroup.js +++ b/source/Ox.UI/js/Form/CheckboxGroup.js @@ -2,16 +2,16 @@ /*@ Ox.CheckboxGroup CheckboxGroup Object - ([options[, self]]) -> CheckboxGroup Object - change triggered when checked property changes - passes {id, title, value} options Options object checkboxes array of checkboxes max max selected min min selected type type ("group" or "list") width width in px - self shared private variable + self Shared private variable + ([options[, self]]) -> CheckboxGroup Object + change triggered when checked property changes + passes {id, title, value} @*/ Ox.CheckboxGroup = function(options, self) { diff --git a/source/Ox.UI/js/Form/ColorInput.js b/source/Ox.UI/js/Form/ColorInput.js index 78c9e3ef..bda1f443 100644 --- a/source/Ox.UI/js/Form/ColorInput.js +++ b/source/Ox.UI/js/Form/ColorInput.js @@ -2,12 +2,12 @@ /*@ Ox.ColorInput ColorInput Element - ([options[, self]]) -> ColorInput Element - change change options Options object mode Mode ('rgb' or 'hsl') value <[n]|[0, 0, 0]> Value self Shared private variable + ([options[, self]]) -> ColorInput Element + change change @*/ Ox.ColorInput = function(options, self) { diff --git a/source/Ox.UI/js/Form/ColorPicker.js b/source/Ox.UI/js/Form/ColorPicker.js index fcb7a6b1..aa92d646 100644 --- a/source/Ox.UI/js/Form/ColorPicker.js +++ b/source/Ox.UI/js/Form/ColorPicker.js @@ -2,12 +2,12 @@ /*@ Ox.ColorPicker ColorPicker Element - ([options[, self]]) -> ColorPicker Element - change triggered on change of value options Options object mode Mode ('rgb' or 'hsl') value <[n]|[0, 0, 0]> Value self Shared private variable + ([options[, self]]) -> ColorPicker Element + change triggered on change of value @*/ Ox.ColorPicker = function(options, self) { diff --git a/source/Ox.UI/js/Form/DateInput.js b/source/Ox.UI/js/Form/DateInput.js index 531b2690..3ce5f4da 100644 --- a/source/Ox.UI/js/Form/DateInput.js +++ b/source/Ox.UI/js/Form/DateInput.js @@ -2,8 +2,6 @@ /*@ Ox.DateInput DateInput Element - ([options[, self]]) -> DateInput Element - change triggered on change of value options Options object format format can be short, medium, long value date value, defaults to current date @@ -14,6 +12,8 @@ Ox.DateInput DateInput Element weekday width of weekday input element year width of year input element self Shared private variable + ([options[, self]]) -> DateInput Element + change triggered on change of value @*/ Ox.DateInput = function(options, self) { diff --git a/source/Ox.UI/js/Form/DateTimeInput.js b/source/Ox.UI/js/Form/DateTimeInput.js index 2f9e6eff..cd460bb0 100644 --- a/source/Ox.UI/js/Form/DateTimeInput.js +++ b/source/Ox.UI/js/Form/DateTimeInput.js @@ -2,8 +2,6 @@ /*@ Ox.DateTimeInput DateTimeInput Element - ([options[, self]]) -> DateTimeInput Element - change triggered on change of value options Options object ampm false is 24h true is am/pm format options are short, medium, long @@ -11,6 +9,8 @@ Ox.DateTimeInput DateTimeInput Element value defautls to now weekday weekday self Shared private variable + ([options[, self]]) -> DateTimeInput Element + change triggered on change of value @*/ Ox.DateTimeInput = function(options, self) { diff --git a/source/Ox.UI/js/Form/Editable.js b/source/Ox.UI/js/Form/Editable.js index 2b58fb29..e43c9936 100644 --- a/source/Ox.UI/js/Form/Editable.js +++ b/source/Ox.UI/js/Form/Editable.js @@ -2,18 +2,18 @@ /*@ Ox.Editable Editable element - ([options[, self]]) -> Input Element - blur blur - cancel cancel - edit edit - open open - submit submit options Options object editing If true, loads in editing state format Format function (value) -> Formatted value value Input value self Shared private variable + ([options[, self]]) -> Input Element + blur blur + cancel cancel + edit edit + open open + submit submit @*/ Ox.Editable = function(options, self) { diff --git a/source/Ox.UI/js/Form/Filter.js b/source/Ox.UI/js/Form/Filter.js index 8f7d68cd..c841aca2 100644 --- a/source/Ox.UI/js/Form/Filter.js +++ b/source/Ox.UI/js/Form/Filter.js @@ -2,8 +2,6 @@ /*@ Ox.Filter Filter Object - ([options[, self]]) -> Filter Object - change change options Options object findKeys <[]|[]> keys list list object @@ -19,6 +17,8 @@ Ox.Filter Filter Object sortKeys keys to sort by viewKeys visible keys self Shared private variable + ([options[, self]]) -> Filter Object + change change @*/ Ox.Filter = function(options, self) { diff --git a/source/Ox.UI/js/Form/Form.js b/source/Ox.UI/js/Form/Form.js index 65a0018d..4ba7498a 100644 --- a/source/Ox.UI/js/Form/Form.js +++ b/source/Ox.UI/js/Form/Form.js @@ -2,15 +2,15 @@ /*@ Ox.Form Form Object - ([options[, self]]) -> Form Object - change change - validate validate - submit submit options Options object error error id id items [] - self shared private variable + self Shared private variable + ([options[, self]]) -> Form Object + change change + validate validate + submit submit @*/ Ox.Form = function(options, self) { diff --git a/source/Ox.UI/js/Form/FormElementGroup.js b/source/Ox.UI/js/Form/FormElementGroup.js index 988fd11c..28a83e46 100644 --- a/source/Ox.UI/js/Form/FormElementGroup.js +++ b/source/Ox.UI/js/Form/FormElementGroup.js @@ -2,10 +2,6 @@ /*@ Ox.FormElementGroup FormElementGroup Element - ([options[, self]]) -> FormElementGroup Element - autovalidate autovalidate - change change - validate validate options Options object id element id elements <[o:Ox.Element]|[]> elements in group @@ -13,6 +9,10 @@ Ox.FormElementGroup FormElementGroup Element separators separators (not implemented) width group width self Shared private variable + ([options[, self]]) -> FormElementGroup Element + autovalidate autovalidate + change change + validate validate @*/ Ox.FormElementGroup = function(options, self) { diff --git a/source/Ox.UI/js/Form/FormItem.js b/source/Ox.UI/js/Form/FormItem.js index 0a02c2a4..baff0de3 100644 --- a/source/Ox.UI/js/Form/FormItem.js +++ b/source/Ox.UI/js/Form/FormItem.js @@ -2,11 +2,11 @@ /*@ Ox.FormItem FormItem Element, wraps form element with an error message - ([options[, self]]) -> FormItem Element options Options object element element error error message self Shared private variable + ([options[, self]]) -> FormItem Element @*/ Ox.FormItem = function(options, self) { diff --git a/source/Ox.UI/js/Form/FormPanel.js b/source/Ox.UI/js/Form/FormPanel.js index ecc9efda..aeabee16 100644 --- a/source/Ox.UI/js/Form/FormPanel.js +++ b/source/Ox.UI/js/Form/FormPanel.js @@ -2,11 +2,11 @@ /*@ Ox.FormPanel Form Panel + options Options + self Shared private variable ([options[, self]]) -> Form Panel change change validate validate - options Options - self Shared private variable @*/ Ox.FormPanel = function(options, self) { diff --git a/source/Ox.UI/js/Form/Input.js b/source/Ox.UI/js/Form/Input.js index e2d1ef70..a50a64ab 100644 --- a/source/Ox.UI/js/Form/Input.js +++ b/source/Ox.UI/js/Form/Input.js @@ -2,17 +2,6 @@ /*@ Ox.Input Input Element - ([options[, self]]) -> Input Element - autocomplete autocomplete - autovalidate autovalidate - blur blur - cancel cancel - change input changed event - clear clear - focus focus - insert insert - submit input submit event - validate validate options Options object arrows if true, and type is 'float' or 'int', display arrows arrowStep step when clicking arrows @@ -65,7 +54,17 @@ Ox.Input Input Element value string validate remote validation width px - + ([options[, self]]) -> Input Element + autocomplete autocomplete + autovalidate autovalidate + blur blur + cancel cancel + change input changed event + clear clear + focus focus + insert insert + submit input submit event + validate validate @*/ Ox.Input = function(options, self) { diff --git a/source/Ox.UI/js/Form/InputGroup.js b/source/Ox.UI/js/Form/InputGroup.js index 69fac436..252574d6 100644 --- a/source/Ox.UI/js/Form/InputGroup.js +++ b/source/Ox.UI/js/Form/InputGroup.js @@ -2,15 +2,15 @@ /*@ Ox.InputGroup InputGroup Object - ([options[, self]]) -> InputGroup Object - change change - validate validate options Options object id id inputs inputs separators seperators width width - self shared private variable + self Shared private variable + ([options[, self]]) -> InputGroup Object + change change + validate validate @*/ Ox.InputGroup = function(options, self) { diff --git a/source/Ox.UI/js/Form/InsertHTMLDialog.js b/source/Ox.UI/js/Form/InsertHTMLDialog.js index 360e7cf9..7a7ce956 100644 --- a/source/Ox.UI/js/Form/InsertHTMLDialog.js +++ b/source/Ox.UI/js/Form/InsertHTMLDialog.js @@ -2,9 +2,9 @@ /*@ Ox.InsertHTMLDialog Insert HTML Dialog - ([options[, self]]) -> Insert HTML Dialog options Options self Shared private variable + ([options[, self]]) -> Insert HTML Dialog @*/ Ox.InsertHTMLDialog = function(options, self) { diff --git a/source/Ox.UI/js/Form/Label.js b/source/Ox.UI/js/Form/Label.js index 0e9020da..d11a67ff 100644 --- a/source/Ox.UI/js/Form/Label.js +++ b/source/Ox.UI/js/Form/Label.js @@ -2,8 +2,9 @@ /*@ Ox.Label Label element + options Options object + self Shared private variable ([options[, self]]) -> Label element - options Options object @*/ Ox.Label = function(options, self) { diff --git a/source/Ox.UI/js/Form/ObjectArrayInput.js b/source/Ox.UI/js/Form/ObjectArrayInput.js index e0890e10..09a81006 100644 --- a/source/Ox.UI/js/Form/ObjectArrayInput.js +++ b/source/Ox.UI/js/Form/ObjectArrayInput.js @@ -2,8 +2,6 @@ /*@ Ox.ObjectArrayInput Object Array Input - ([options[, self]]) -> Object Array Input - change change options Options buttonTitles inputs @@ -12,6 +10,8 @@ Ox.ObjectArrayInput Object Array Input value width self Shared private variable + ([options[, self]]) -> Object Array Input + change change @*/ Ox.ObjectArrayInput = function(options, self) { diff --git a/source/Ox.UI/js/Form/ObjectInput.js b/source/Ox.UI/js/Form/ObjectInput.js index 004e041e..9d223f30 100644 --- a/source/Ox.UI/js/Form/ObjectInput.js +++ b/source/Ox.UI/js/Form/ObjectInput.js @@ -2,10 +2,10 @@ /*@ Ox.ObjectInput Object Input - ([options[, self]]) -> Object Input - change change options Options self Shared private variable + ([options[, self]]) -> Object Input + change change @*/ Ox.ObjectInput = function(options, self) { diff --git a/source/Ox.UI/js/Form/Picker.js b/source/Ox.UI/js/Form/Picker.js index 4af82bd0..68844601 100644 --- a/source/Ox.UI/js/Form/Picker.js +++ b/source/Ox.UI/js/Form/Picker.js @@ -2,15 +2,16 @@ /*@ Ox.Picker Picker Object - ([options[, self]]) -> Picker Object - show picker is shown - hide picker is hidden options Options object element picker element elementHeight height elemementWidth width id picker id overlap select button overlap value + self Shared private variable + ([options[, self]]) -> Picker Object + show picker is shown + hide picker is hidden @*/ Ox.Picker = function(options, self) { diff --git a/source/Ox.UI/js/Form/PlaceInput.js b/source/Ox.UI/js/Form/PlaceInput.js index ed573f6b..8d26649a 100644 --- a/source/Ox.UI/js/Form/PlaceInput.js +++ b/source/Ox.UI/js/Form/PlaceInput.js @@ -2,11 +2,11 @@ /*@ Ox.PlaceInput PlaceInput Object - ([options[, self]]) -> PlaceInput Object options Options object id element id value default value of place input - self shared private variable + self Shared private variable + ([options[, self]]) -> PlaceInput Object @*/ Ox.PlaceInput = function(options, self) { diff --git a/source/Ox.UI/js/Form/PlacePicker.js b/source/Ox.UI/js/Form/PlacePicker.js index 131e98d1..3c706c6c 100644 --- a/source/Ox.UI/js/Form/PlacePicker.js +++ b/source/Ox.UI/js/Form/PlacePicker.js @@ -2,11 +2,11 @@ /*@ Ox.PlacePicker PlacePicker Object - ([options[, self]]) -> PlacePicker Object options Options object id element id value default value of place input - self shared private variable + self Shared private variable + ([options[, self]]) -> PlacePicker Object @*/ Ox.PlacePicker = function(options, self) { diff --git a/source/Ox.UI/js/Form/Range.js b/source/Ox.UI/js/Form/Range.js index 5d16eeaf..418a63dc 100644 --- a/source/Ox.UI/js/Form/Range.js +++ b/source/Ox.UI/js/Form/Range.js @@ -2,8 +2,6 @@ /*@ Ox.Range Range Object - ([options[, self]]) -> Range Object - change triggered on change of the range options Options object arrows if true, show arrows arrowStep step when clicking arrows @@ -22,7 +20,9 @@ Ox.Range Range Object trackStep 0 (scroll here) or step when clicking track value initial value values <[s]> values to display on thumb - self shared private variable + self Shared private variable + ([options[, self]]) -> Range Object + change triggered on change of the range @*/ Ox.Range = function(options, self) { diff --git a/source/Ox.UI/js/Form/Select.js b/source/Ox.UI/js/Form/Select.js index cbf456e0..e942d59c 100644 --- a/source/Ox.UI/js/Form/Select.js +++ b/source/Ox.UI/js/Form/Select.js @@ -2,9 +2,6 @@ /*@ Ox.Select Select Object - ([options[, self]) -> Select Object - click Click event - change Change event options Options object disabled If true, select is disabled id Element id @@ -26,6 +23,9 @@ Ox.Select Select Object value Selected id, or array of selected ids width Width in px, or 'auto' self Shared private variable + ([options[, self]) -> Select Object + click Click event + change Change event @*/ Ox.Select = function(options, self) { diff --git a/source/Ox.UI/js/Form/SelectInput.js b/source/Ox.UI/js/Form/SelectInput.js index 8ac87566..72433dd7 100644 --- a/source/Ox.UI/js/Form/SelectInput.js +++ b/source/Ox.UI/js/Form/SelectInput.js @@ -2,9 +2,9 @@ //FIXME: does not work without options /*@ Ox.SelectInput Select Input - ([options[, self]]) -> Select Input options Options self Shared private variable + ([options[, self]]) -> Select Input @*/ Ox.SelectInput = function(options, self) { diff --git a/source/Ox.UI/js/Form/Spreadsheet.js b/source/Ox.UI/js/Form/Spreadsheet.js index 018a363f..1d376e8f 100644 --- a/source/Ox.UI/js/Form/Spreadsheet.js +++ b/source/Ox.UI/js/Form/Spreadsheet.js @@ -2,10 +2,10 @@ /*@ Ox.Spreadsheet Spreadsheet - ([options[, self]]) -> Spreadsheet - change change options Options self Shared private variable + ([options[, self]]) -> Spreadsheet + change change @*/ Ox.Spreadsheet = function(options, self) { diff --git a/source/Ox.UI/js/Form/TimeInput.js b/source/Ox.UI/js/Form/TimeInput.js index 46db6824..4faed77e 100644 --- a/source/Ox.UI/js/Form/TimeInput.js +++ b/source/Ox.UI/js/Form/TimeInput.js @@ -2,13 +2,13 @@ /*@ Ox.TimeInput TimeInput Object - ([options[, self]]) -> TimeInput Object options Options object ampm 24h/ampm seconds show seconds milliseconds show milliseconds value value, defaults to current time - self shared private variable + self Shared private variable + ([options[, self]]) -> TimeInput Object @*/ Ox.TimeInput = function(options, self) { diff --git a/source/Ox.UI/js/List/Chart.js b/source/Ox.UI/js/List/Chart.js index 376ef454..f5b018bf 100644 --- a/source/Ox.UI/js/List/Chart.js +++ b/source/Ox.UI/js/List/Chart.js @@ -2,7 +2,6 @@ /*@ Ox.Chart Bar Chart - ([options[, self]]) -> Chart object options Options color <[n]|[[n]]|[128, 128, 128]> Bar color data {k: v, ...} or {k: {k: v, ...}, ...} @@ -14,7 +13,7 @@ Ox.Chart Bar Chart title Chart title width Chart width self shared private variable - + ([options[, self]]) -> Chart object @*/ Ox.Chart = function(options, self) { diff --git a/source/Ox.UI/js/List/IconItem.js b/source/Ox.UI/js/List/IconItem.js index aa9618b6..022a0020 100644 --- a/source/Ox.UI/js/List/IconItem.js +++ b/source/Ox.UI/js/List/IconItem.js @@ -2,7 +2,6 @@ /*@ Ox.IconItem IconItem Object - ([options[, self]]) -> IconItem Object options Options object borderRadius Border radius for icon images find String to be highlighted @@ -16,6 +15,7 @@ Ox.IconItem IconItem Object title Title url Icon url self Shared private variable + ([options[, self]]) -> IconItem Object @*/ Ox.IconItem = function(options, self) { diff --git a/source/Ox.UI/js/List/IconList.js b/source/Ox.UI/js/List/IconList.js index 1337c9ae..24d78263 100644 --- a/source/Ox.UI/js/List/IconList.js +++ b/source/Ox.UI/js/List/IconList.js @@ -1,7 +1,6 @@ 'use strict'; /*@ Ox.IconList IconList Object - ([options[, self]]) -> IconList Object options Options object borderRadius border radius for icon images centerSelection scroll list so selection is always centered @@ -23,7 +22,8 @@ Ox.IconList IconList Object selected array of selected items size list size sort sort keys - self shared private variable + self Shared private variable + ([options[, self]]) -> IconList Object @*/ Ox.IconList = function(options, self) { diff --git a/source/Ox.UI/js/List/InfoList.js b/source/Ox.UI/js/List/InfoList.js index a309428d..41c2636a 100644 --- a/source/Ox.UI/js/List/InfoList.js +++ b/source/Ox.UI/js/List/InfoList.js @@ -2,9 +2,9 @@ /*@ Ox.InfoList Info List - ([options[, self]]) -> Info List options Options self Shared private variable + ([options[, self]]) -> Info List @*/ Ox.InfoList = function(options, self) { diff --git a/source/Ox.UI/js/List/ListItem.js b/source/Ox.UI/js/List/ListItem.js index 53891f99..6506b927 100644 --- a/source/Ox.UI/js/List/ListItem.js +++ b/source/Ox.UI/js/List/ListItem.js @@ -2,16 +2,16 @@ /*@ Ox.ListItem ListItem Object - ([options[, self]]) -> ListItem Object - cancel triggered if cancel button is pressed - save triggered if save button is pressed options Options object construct construct function data item data draggable can be dragged position item position unique unique key - self shared private variable + self Shared private variable + ([options[, self]]) -> ListItem Object + cancel triggered if cancel button is pressed + save triggered if save button is pressed @*/ Ox.ListItem = function(options, self) { diff --git a/source/Ox.UI/js/List/ListPage.js b/source/Ox.UI/js/List/ListPage.js index 9e15b40c..91de32f1 100644 --- a/source/Ox.UI/js/List/ListPage.js +++ b/source/Ox.UI/js/List/ListPage.js @@ -2,9 +2,9 @@ /*@ Ox.ListPage ListPage Object - ([options[, self]]) -> ListPage Object options Options object - self shared private variable + self Shared private variable + ([options[, self]]) -> ListPage Object @*/ Ox.ListPage = function(options, self) { self = self || {}; diff --git a/source/Ox.UI/js/List/TableList.js b/source/Ox.UI/js/List/TableList.js index 623b90e1..bdfdb6c5 100644 --- a/source/Ox.UI/js/List/TableList.js +++ b/source/Ox.UI/js/List/TableList.js @@ -2,7 +2,6 @@ /*@ Ox.TableList TableList Widget - ([options[, self]]) -> TableList Object options Options object columns <[o]|[]> Columns # Fixme: There's probably more... @@ -42,7 +41,8 @@ Ox.TableList TableList Widget deprecated). columnresize columnresize columnchange columnchange - self shared private variable + self Shared private variable + ([options[, self]]) -> TableList Object @*/ // fixme: options.columnsMovable, but options.sortable ... pick one. diff --git a/source/Ox.UI/js/List/TreeList.js b/source/Ox.UI/js/List/TreeList.js index 5fd51b62..736e5fbf 100644 --- a/source/Ox.UI/js/List/TreeList.js +++ b/source/Ox.UI/js/List/TreeList.js @@ -2,7 +2,6 @@ /*@ Ox.TreeList Tree List - ([options[, self]]) -> Tree List Object options Options object data Data to be parsed as items (needs documentation) expanded If true, and data is not null, all items are expanded @@ -13,6 +12,7 @@ Ox.TreeList Tree List selected Selected ids width List width self Shared private variable + ([options[, self]]) -> Tree List Object @*/ Ox.TreeList = function(options, self) { diff --git a/source/Ox.UI/js/Map/MapEditor.js b/source/Ox.UI/js/Map/MapEditor.js index c467596a..0e7a43eb 100644 --- a/source/Ox.UI/js/Map/MapEditor.js +++ b/source/Ox.UI/js/Map/MapEditor.js @@ -2,11 +2,6 @@ /*@ Ox.MapEditor Map Editor - ([options[, self]]) -> Map Editor - addplace addplace - removeplace removeplace - geocode geocode - loadlist loadlist options Options object height Height in px labels If true, show labels @@ -15,6 +10,11 @@ Ox.MapEditor Map Editor selected Id of the selected place width Width in px self Shared private variable + ([options[, self]]) -> Map Editor + addplace addplace + removeplace removeplace + geocode geocode + loadlist loadlist @*/ Ox.MapEditor = function(options, self) { diff --git a/source/Ox.UI/js/Map/MapImage.js b/source/Ox.UI/js/Map/MapImage.js index 7cd5ba25..91edc02f 100644 --- a/source/Ox.UI/js/Map/MapImage.js +++ b/source/Ox.UI/js/Map/MapImage.js @@ -2,13 +2,13 @@ /*@ Ox.MapImage MapImage Object - ([options[, self]]) -> MapImage Object options Options object height image height (px) place Object with south, west, north and east properties type map type ('hybrid', 'roadmap', 'satellite', 'terrain') width image width (px) self shared private variable + ([options[, self]]) -> MapImage Object @*/ Ox.MapImage = function(options, self) { diff --git a/source/Ox.UI/js/Menu/MainMenu.js b/source/Ox.UI/js/Menu/MainMenu.js index f24df8ab..20f046e0 100644 --- a/source/Ox.UI/js/Menu/MainMenu.js +++ b/source/Ox.UI/js/Menu/MainMenu.js @@ -2,12 +2,12 @@ /*@ Ox.MainMenu MainMenu Object - ([options[, self]]) -> MainMenu Object options Options object extras extra menus menus submenus size can be small, medium, large - self shared private variable + self Shared private variable + ([options[, self]]) -> MainMenu Object @*/ Ox.MainMenu = function(options, self) { diff --git a/source/Ox.UI/js/Menu/Menu.js b/source/Ox.UI/js/Menu/Menu.js index 87e71baa..57d74639 100644 --- a/source/Ox.UI/js/Menu/Menu.js +++ b/source/Ox.UI/js/Menu/Menu.js @@ -2,17 +2,6 @@ /*@ Ox.Menu Menu Object - ([options[, self]]) -> Menu Object - change_groupId {id, value} checked item of a group has changed - click_itemId item not belonging to a group was clicked - click_menuId {id, value} item not belonging to a group was clicked - deselect_menuId {id, value} item was deselected not needed, not implemented - hide_menuId menu was hidden - select_menuId {id, value} item was selected - click click - change change - select select - deselect deselect options Options object element the element the menu is attached to id the menu id @@ -25,7 +14,18 @@ Ox.Menu Menu Object selected the position of the selected item side open to 'bottom' or 'right' size 'large', 'medium' or 'small' - self shared private variable + self Shared private variable + ([options[, self]]) -> Menu Object + change_groupId {id, value} checked item of a group has changed + click_itemId item not belonging to a group was clicked + click_menuId {id, value} item not belonging to a group was clicked + deselect_menuId {id, value} item was deselected not needed, not implemented + hide_menuId menu was hidden + select_menuId {id, value} item was selected + click click + change change + select select + deselect deselect @*/ Ox.Menu = function(options, self) { diff --git a/source/Ox.UI/js/Menu/MenuButton.js b/source/Ox.UI/js/Menu/MenuButton.js index 90b80571..1cd3111d 100644 --- a/source/Ox.UI/js/Menu/MenuButton.js +++ b/source/Ox.UI/js/Menu/MenuButton.js @@ -2,7 +2,6 @@ /*@ Ox.MenuButton Menu Button - ([options[, self]]) -> Menu Button options Options object disabled If true, button is disabled id Element id @@ -19,6 +18,8 @@ Ox.MenuButton Menu Button change change hide hide show show + self Shared private variable + ([options[, self]]) -> Menu Button @*/ Ox.MenuButton = function(options, self) { diff --git a/source/Ox.UI/js/Menu/MenuItem.js b/source/Ox.UI/js/Menu/MenuItem.js index 71d7695c..9777c7a9 100644 --- a/source/Ox.UI/js/Menu/MenuItem.js +++ b/source/Ox.UI/js/Menu/MenuItem.js @@ -2,7 +2,6 @@ /*@ Ox.MenuItem MenuItem Object - ([options[, self]]) -> MenuItem Object options Options object bind fixme: what's this? checked If true, the item is checked @@ -16,7 +15,8 @@ Ox.MenuItem MenuItem Object menu menu position position title title - self shared private variable + self Shared private variable + ([options[, self]]) -> MenuItem Object @*/ Ox.MenuItem = function(options, self) { diff --git a/source/Ox.UI/js/Panel/CollapsePanel.js b/source/Ox.UI/js/Panel/CollapsePanel.js index df6493a8..db36fa48 100644 --- a/source/Ox.UI/js/Panel/CollapsePanel.js +++ b/source/Ox.UI/js/Panel/CollapsePanel.js @@ -2,14 +2,14 @@ /*@ Ox.CollapsePanel CollapsePanel Object - ([options[, self]]) -> CollapsePanel Object - toggle toggle options Options object collapsed collapsed state extras panel extras size size title title - self shared private variable + self Shared private variable + ([options[, self]]) -> CollapsePanel Object + toggle toggle @*/ Ox.CollapsePanel = function(options, self) { diff --git a/source/Ox.UI/js/Panel/SplitPanel.js b/source/Ox.UI/js/Panel/SplitPanel.js index 9a1e0f88..1ef6eb1a 100644 --- a/source/Ox.UI/js/Panel/SplitPanel.js +++ b/source/Ox.UI/js/Panel/SplitPanel.js @@ -2,11 +2,6 @@ /*@ Ox.SplitPanel SpliPanel Object - ([options[, self]]) -> SpliPanel Object - resize resize - Fires on resize, on both elements being resized - toggle toggle - Fires on collapse or expand, on the element being toggled options Options object elements <[o]|[]> Array of two or three element objects collapsible If true, can be collapsed (if outer element) @@ -19,7 +14,12 @@ Ox.SplitPanel SpliPanel Object size Size in px (one element must be "auto") tooltip If true, show tooltip, if string, append it orientation orientation ("horizontal" or "vertical") - self shared private variable + self Shared private variable + ([options[, self]]) -> SpliPanel Object + resize resize + Fires on resize, on both elements being resized + toggle toggle + Fires on collapse or expand, on the element being toggled @*/ Ox.SplitPanel = function(options, self) { diff --git a/source/Ox.UI/js/Panel/TabPanel.js b/source/Ox.UI/js/Panel/TabPanel.js index 47df27d0..ca4b20a8 100644 --- a/source/Ox.UI/js/Panel/TabPanel.js +++ b/source/Ox.UI/js/Panel/TabPanel.js @@ -2,8 +2,6 @@ /*@ Ox.TabPanel Tabbed panel - ([options[, self]]) -> Panel - change change options Options content Content per tab Either `({id1: $element1, id2: $element2}}` or `function(id) { @@ -13,6 +11,8 @@ Ox.TabPanel Tabbed panel id Tab id title Tab title self Shared private variable + ([options[, self]]) -> Panel + change change @*/ Ox.TabPanel = function(options, self) { diff --git a/source/Ox.UI/js/Video/AnnotationFolder.js b/source/Ox.UI/js/Video/AnnotationFolder.js index 9d76852e..a81c468a 100644 --- a/source/Ox.UI/js/Video/AnnotationFolder.js +++ b/source/Ox.UI/js/Video/AnnotationFolder.js @@ -2,6 +2,14 @@ /*@ Ox.AnnotationFolder AnnotationFolder Object + options Options object + editable If true, annotations can be added + id id + items items + title title + type panel type + width + self Shared private variable ([options[, self]]) -> AnnotationFolder Object add add blur blur @@ -19,14 +27,6 @@ Ox.AnnotationFolder AnnotationFolder Object submit submit togglelayer togglelayer togglewidget togglewidget - options Options object - editable If true, annotations can be added - id id - items items - title title - type panel type - width - self shared private variable @*/ Ox.AnnotationFolder = function(options, self) { diff --git a/source/Ox.UI/js/Video/AnnotationPanel.js b/source/Ox.UI/js/Video/AnnotationPanel.js index c137520f..eb0738cc 100644 --- a/source/Ox.UI/js/Video/AnnotationPanel.js +++ b/source/Ox.UI/js/Video/AnnotationPanel.js @@ -2,23 +2,6 @@ /*@ Ox.AnnotationPanel Video Annotation Panel - ([options[, self]]) -> AnnotationPanel Object - add add - annotationsID annotationsID - blur blur - change change - define define - edit edit - findannotations findannotations - find find - focus focus - info info - open open - remove remove - resize resize - submit submit - togglelayer togglelayer - toggle* toggle* options Options object calendarSize calendar size clickLink click link callback @@ -36,7 +19,24 @@ Ox.AnnotationPanel Video Annotation Panel showUsers if true show user sort position, start, text width panel width - self shared private variable + self Shared private variable + ([options[, self]]) -> AnnotationPanel Object + add add + annotationsID annotationsID + blur blur + change change + define define + edit edit + findannotations findannotations + find find + focus focus + info info + open open + remove remove + resize resize + submit submit + togglelayer togglelayer + toggle* toggle* @*/ Ox.AnnotationPanel = function(options, self) { diff --git a/source/Ox.UI/js/Video/BlockVideoTimeline.js b/source/Ox.UI/js/Video/BlockVideoTimeline.js index 106a3a85..9e44199d 100644 --- a/source/Ox.UI/js/Video/BlockVideoTimeline.js +++ b/source/Ox.UI/js/Video/BlockVideoTimeline.js @@ -2,12 +2,12 @@ /*@ Ox.BlockVideoTimeline Block Video Timeline + options Options + self Shared private variable ([options[, self]]) -> Block Video Timeline edit edit select select position position - options Options - self Shared private variable @*/ Ox.BlockVideoTimeline = function(options, self) { diff --git a/source/Ox.UI/js/Video/LargeVideoTimeline.js b/source/Ox.UI/js/Video/LargeVideoTimeline.js index 486ff631..4fc199f6 100644 --- a/source/Ox.UI/js/Video/LargeVideoTimeline.js +++ b/source/Ox.UI/js/Video/LargeVideoTimeline.js @@ -2,10 +2,10 @@ /*@ Ox.LargeVideoTimeline LargeTimeline Object - ([options[, self]]) -> LargeTimeline Object options Options object - self shared private variable - position position + self Shared private variable + ([options[, self]]) -> LargeTimeline Object + position position @*/ Ox.LargeVideoTimeline = function(options, self) { diff --git a/source/Ox.UI/js/Video/SmallVideoTimeline.js b/source/Ox.UI/js/Video/SmallVideoTimeline.js index 485f80e1..9dd325b9 100644 --- a/source/Ox.UI/js/Video/SmallVideoTimeline.js +++ b/source/Ox.UI/js/Video/SmallVideoTimeline.js @@ -2,6 +2,8 @@ /*@ Ox.SmallVideoTimeline Small video timeline + options Options + self Shared private variable ([options[, self]]) -> Small video timeline position position @*/ diff --git a/source/Ox.UI/js/Video/SmallVideoTimelineImage.js b/source/Ox.UI/js/Video/SmallVideoTimelineImage.js index 901bb5f0..f419b4b3 100644 --- a/source/Ox.UI/js/Video/SmallVideoTimelineImage.js +++ b/source/Ox.UI/js/Video/SmallVideoTimelineImage.js @@ -2,9 +2,9 @@ /*@ Ox.SmallVideoTimelineImage Small Video Timeline Image - (options[, self]) -> Small Video Timeline Image options Options self Shared private variable + ([options[, self]]) -> Small Video Timeline Image @*/ Ox.SmallVideoTimelineImage = function(options, self) { diff --git a/source/Ox.UI/js/Video/VideoEditor.js b/source/Ox.UI/js/Video/VideoEditor.js index 7e207676..578e9494 100644 --- a/source/Ox.UI/js/Video/VideoEditor.js +++ b/source/Ox.UI/js/Video/VideoEditor.js @@ -2,6 +2,8 @@ /*@ Ox.VideoEditor VideoEditor Object + options Options object + self Shared private variable ([options[, self]]) -> VideoEditor Object addannotation addannotation annotationsfont annotationsfont @@ -37,9 +39,6 @@ Ox.VideoEditor VideoEditor Object togglelayer togglelayer togglemap togglemap volume volume - options Options object - annotationsCalendarSize - self shared private variable @*/ // fixme: should be VideoAnnotationEditor diff --git a/source/Ox.UI/js/Video/VideoEditorPlayer.js b/source/Ox.UI/js/Video/VideoEditorPlayer.js index 6487e965..4a5fdddc 100644 --- a/source/Ox.UI/js/Video/VideoEditorPlayer.js +++ b/source/Ox.UI/js/Video/VideoEditorPlayer.js @@ -2,13 +2,13 @@ /*@ Ox.VideoEditorPlayer VideoEditorPlayer Object + options Options object + self Shared private variable ([options[, self]]) -> VideoEditorPlayer Object change change playing playing set set togglesize togglesize - options Options object - self shared private variable @*/ Ox.VideoEditorPlayer = function(options, self) { diff --git a/source/Ox.UI/js/Video/VideoElement.js b/source/Ox.UI/js/Video/VideoElement.js index 7305037c..30f5a65f 100644 --- a/source/Ox.UI/js/Video/VideoElement.js +++ b/source/Ox.UI/js/Video/VideoElement.js @@ -2,6 +2,8 @@ /*@ Ox.VideoElement VideoElement Object + options Options object + self Shared private variable ([options[, self]]) -> VideoElement Object loadedmetadata loadedmetadata pointschange pointschange @@ -9,8 +11,6 @@ Ox.VideoElement VideoElement Object seeking seeking sizechange sizechange ended ended - options Options object - self shared private variable @*/ Ox.VideoElement = function(options, self) { diff --git a/source/Ox.UI/js/Video/VideoPanel.js b/source/Ox.UI/js/Video/VideoPanel.js index 304c6149..56c80bfa 100644 --- a/source/Ox.UI/js/Video/VideoPanel.js +++ b/source/Ox.UI/js/Video/VideoPanel.js @@ -2,7 +2,15 @@ /*@ Ox.VideoPanel VideoPanel Object + options Options object + self Shared private variable ([options[, self]]) -> VideoPanel Object + annotationsfont annotationsfont + annotationsrange annotationsrange + annotationssize annotationssize + annotationssort annotationssort + censored censored + downloadvideo downloadvideo find find info info key_* key_* @@ -20,14 +28,6 @@ Ox.VideoPanel VideoPanel Object togglemap togglemap toggletimeline toggletimeline volume volume - options Options object - self shared private variable - annotationsfont annotationsfont - annotationsrange annotationsrange - annotationssize annotationssize - annotationssort annotationssort - censored censored - downloadvideo downloadvideo @*/ Ox.VideoPanel = function(options, self) { diff --git a/source/Ox.UI/js/Video/VideoPlayer.js b/source/Ox.UI/js/Video/VideoPlayer.js index e657f5dc..e7a0a1b0 100644 --- a/source/Ox.UI/js/Video/VideoPlayer.js +++ b/source/Ox.UI/js/Video/VideoPlayer.js @@ -2,28 +2,6 @@ /*@ Ox.VideoPlayer Generic Video Player - ([options[, self]]) -> Video Player - censored censored - close close - download download - ended ended - find find - fullscreen fullscreen - gotopoint gotopoint - loadedmetadata loadedmetadata - muted muted - open open - paused paused - playing playing - position position - resolution resolution - scale scale - select select - setpoint setpoint - size size - subtitles subtitles - volume volume - zap zap options Options annotations <[]> Array of annotations id Optional id @@ -95,6 +73,28 @@ Ox.VideoPlayer Generic Video Player volume Volume (0-1) width Width in px self shared private variable + ([options[, self]]) -> Video Player + censored censored + close close + download download + ended ended + find find + fullscreen fullscreen + gotopoint gotopoint + loadedmetadata loadedmetadata + muted muted + open open + paused paused + playing playing + position position + resolution resolution + scale scale + select select + setpoint setpoint + size size + subtitles subtitles + volume volume + zap zap @*/ Ox.VideoPlayer = function(options, self) { diff --git a/source/Ox.UI/js/Video/VideoPreview.js b/source/Ox.UI/js/Video/VideoPreview.js index 178818e2..41f80db5 100644 --- a/source/Ox.UI/js/Video/VideoPreview.js +++ b/source/Ox.UI/js/Video/VideoPreview.js @@ -2,10 +2,10 @@ /*@ Ox.VideoPreview Video Preview - ([options[, self]]) -> Video Preview - click click options Options self Shared private variable + ([options[, self]]) -> Video Preview + click click @*/ Ox.VideoPreview = function(options, self) { diff --git a/source/Ox.UI/js/Video/VideoTimelinePanel.js b/source/Ox.UI/js/Video/VideoTimelinePanel.js index 094b9c82..f589e09f 100644 --- a/source/Ox.UI/js/Video/VideoTimelinePanel.js +++ b/source/Ox.UI/js/Video/VideoTimelinePanel.js @@ -2,6 +2,8 @@ /*@ Ox.VideoTimelinePanel Video timeline panel + options Options + self Shared private variable ([options[, self]]) -> Video timeline panel annoationssize annoationssize annotationsfont annotationsfont diff --git a/source/Ox.UI/js/Video/VideoTimelinePlayer.js b/source/Ox.UI/js/Video/VideoTimelinePlayer.js index 157e93ea..424cc558 100644 --- a/source/Ox.UI/js/Video/VideoTimelinePlayer.js +++ b/source/Ox.UI/js/Video/VideoTimelinePlayer.js @@ -2,6 +2,8 @@ /*@ Ox.VideoTimelinePlayer Video Timeline Player + options Options + self Shared private variable ([options[, self]]) -> Video Timeline Player censored censored follow follow @@ -10,8 +12,6 @@ Ox.VideoTimelinePlayer Video Timeline Player position position timeline timeline volume volume - options Options - self Shared private variable @*/ Ox.VideoTimelinePlayer = function(options, self) { diff --git a/source/Ox.UI/js/Window/Dialog.js b/source/Ox.UI/js/Window/Dialog.js index f7e7c1d4..f7878e94 100644 --- a/source/Ox.UI/js/Window/Dialog.js +++ b/source/Ox.UI/js/Window/Dialog.js @@ -2,13 +2,13 @@ /*@ Ox.Dialog Dialog object + options Options object + self Shared private variable ([options[, self]]) -> Dialog object close close open open resizeend resizeend resize resize - options Options object - self Shared private variable @*/ Ox.Dialog = function(options, self) { diff --git a/source/Ox.UI/js/Window/Layer.js b/source/Ox.UI/js/Window/Layer.js index 2dc322ee..2725b707 100644 --- a/source/Ox.UI/js/Window/Layer.js +++ b/source/Ox.UI/js/Window/Layer.js @@ -2,11 +2,11 @@ /*@ Ox.Layer Background layer for dialogs and menus - ([options[, self]]) -> Layer - click click options Options type Layer type ('dialog' or 'menu') self Shared private variable + ([options[, self]]) -> Layer + click click @*/ Ox.Layer = function(options, self) { diff --git a/source/Ox.UI/js/Window/Tooltip.js b/source/Ox.UI/js/Window/Tooltip.js index 7ace8af5..cc97447f 100644 --- a/source/Ox.UI/js/Window/Tooltip.js +++ b/source/Ox.UI/js/Window/Tooltip.js @@ -2,10 +2,10 @@ /*@ Ox.Tooltip Tooltip Object - ([options[, self]]) -> Tooltip Object options Options object - self shared private variable -@*/ + self Shared private variable + ([options[, self]]) -> Tooltip Object +s@*/ Ox.Tooltip = function(options, self) {