Skip to content

Commit

Permalink
Updated code documentation #12
Browse files Browse the repository at this point in the history
  • Loading branch information
andersevenrud committed Jan 15, 2015
1 parent 899a0eb commit 923d903
Show file tree
Hide file tree
Showing 22 changed files with 22 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/javascript/gui/button.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
* @see OSjs.GUI._Input
* @api OSjs.GUI.Button
*
* @extends _Input
* @class
*/
var Button = function(name, opts) {
Expand Down
1 change: 1 addition & 0 deletions src/javascript/gui/canvas.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
* @see OSjs.GUI.GUIElement
* @api OSjs.GUI.Canvas
*
* @extends GUIElement
* @class
*/
var Canvas = function(name, opts) {
Expand Down
1 change: 1 addition & 0 deletions src/javascript/gui/checkbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
* @see OSjs.GUI._Input
* @api OSjs.GUI.Checkbox
*
* @extends _Input
* @class
*/
var Checkbox = function(name, opts) {
Expand Down
1 change: 1 addition & 0 deletions src/javascript/gui/colorswatch.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
* @see OSjs.GUI.GUIElement
* @api OSjs.GUI.ColorSwatch
*
* @extends GUIElement
* @class
*/
var ColorSwatch = function(name, opts) {
Expand Down
1 change: 1 addition & 0 deletions src/javascript/gui/iconview.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
* @see OSjs.GUI.GUIElement
* @api OSjs.GUI.IconView
*
* @extends _DataView
* @class
*/
var IconView = function(name, opts) {
Expand Down
2 changes: 1 addition & 1 deletion src/javascript/gui/label.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@
* @option opts String label The Label of Element
* @option opts String forInput ID/Name of input element (optional HTML feature)
*
* @see OSjs.GUI._Input
* @api OSjs.GUI.Label
*
* @extends GUIElement
* @class
*/
var Label = function(name, opts) {
Expand Down
1 change: 1 addition & 0 deletions src/javascript/gui/listview.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
* @see OSjs.GUI.GUIElement
* @api OSjs.GUI.ListView
*
* @extends _DataView
* @class
*/
var ListView = function(name, opts) {
Expand Down
1 change: 1 addition & 0 deletions src/javascript/gui/menubar.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
* @api OSjs.GUI.MenuBar
* @see OSjs.GUI.GUIElement
*
* @extends GUIElement
* @class
*/
var MenuBar = function(name, opts) {
Expand Down
1 change: 1 addition & 0 deletions src/javascript/gui/panedview.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
* @api OSjs.GUI.PanedView
* @see OSjs.GUI.GUIElement
*
* @extends GUIElement
* @class
*/
var PanedView = function(name, opts) {
Expand Down
1 change: 1 addition & 0 deletions src/javascript/gui/progressbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
* @api OSjs.GUI.ProgressBar
* @see OSjs.GUI.GUIElement
*
* @extends GUIElement
* @class
*/
var ProgressBar = function(name, percentage) {
Expand Down
1 change: 1 addition & 0 deletions src/javascript/gui/radio.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
* @see OSjs.GUI.Checkbox
* @api OSjs.GUI.Radio
*
* @extends Checkbox
* @class
*/
var Radio = function(name, opts) {
Expand Down
1 change: 1 addition & 0 deletions src/javascript/gui/richtext.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
* @see OSjs.GUI.GUIElement
* @api OSjs.GUI.RichText
*
* @extends GUIElement
* @class
*/
var RichText = function(name, opts) {
Expand Down
1 change: 1 addition & 0 deletions src/javascript/gui/scrollview.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
* @see OSjs.GUI.GUIElement
* @api OSjs.GUI.ScrollView
*
* @extends GUIElement
* @class
*/
var ScrollView = function(name, opts) {
Expand Down
1 change: 1 addition & 0 deletions src/javascript/gui/select.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
* @see OSjs.GUI._Input
* @api OSjs.GUI.Select
*
* @extends _Input
* @class
*/
var Select = function(name, opts) {
Expand Down
1 change: 1 addition & 0 deletions src/javascript/gui/selectlist.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
* @see OSjs.GUI._Input
* @api OSjs.GUI.SelectList
*
* @extends _Input
* @class
*/
var SelectList = function(name, opts) {
Expand Down
1 change: 1 addition & 0 deletions src/javascript/gui/slider.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
* @see OSjs.GUI.GUIElement
* @api OSjs.GUI.Slider
*
* @extends GUIElement
* @class
*/
var Slider = function(name, opts) {
Expand Down
1 change: 1 addition & 0 deletions src/javascript/gui/statusbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
* @see OSjs.GUI.GUIElement
* @api OSjs.GUI.StatusBar
*
* @extends GUIElement
* @class
*/
var StatusBar = function(name) {
Expand Down
1 change: 1 addition & 0 deletions src/javascript/gui/tabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@
* @see OSjs.GUI.GUIElement
* @api OSjs.GUI.Tabs
*
* @extends GUIElement
* @class
*/
var Tabs = function(name, opts) {
Expand Down
1 change: 1 addition & 0 deletions src/javascript/gui/text.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
* @see OSjs.GUI._Input
* @api OSjs.GUI.Text
*
* @extends _Input
* @class
*/
var Text = function(name, opts) {
Expand Down
1 change: 1 addition & 0 deletions src/javascript/gui/textarea.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
* @see OSjs.GUI._Input
* @api OSjs.GUI.Textarea
*
* @extends _Input
* @class
*/
var Textarea = function(name, opts) {
Expand Down
1 change: 1 addition & 0 deletions src/javascript/gui/toolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
* @see OSjs.GUI.GUIElement
* @api OSjs.GUI.Toolbar
*
* @extends GUIElement
* @class
*/
var ToolBar = function(name, opts) {
Expand Down
1 change: 1 addition & 0 deletions src/javascript/gui/treeview.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
* @see OSjs.GUI.GUIElement
* @api OSjs.GUI.TreeView
*
* @extends _DataView
* @class
*/
var TreeView = function(name, opts) {
Expand Down

0 comments on commit 923d903

Please sign in to comment.