mirror of
https://git.deluge-torrent.org/deluge
synced 2025-09-14 05:51:56 +00:00
tweak the doc strings (although jsdoc-toolkit still seems to be failing)
This commit is contained in:
parent
eb889c1e33
commit
174d974da8
1 changed files with 17 additions and 11 deletions
|
@ -34,12 +34,18 @@ Copyright:
|
||||||
Ext.namespace('Deluge');
|
Ext.namespace('Deluge');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description A class that can be used to manage options throughout the ui.
|
|
||||||
* @namespace Deluge
|
|
||||||
* @class Deluge.OptionsManager
|
* @class Deluge.OptionsManager
|
||||||
|
* @extends Ext.util.Observable
|
||||||
|
* A class that can be used to manage options throughout the ui.
|
||||||
|
* @constructor
|
||||||
|
* Creates a new OptionsManager
|
||||||
|
* @param {Object} config Configuration options
|
||||||
*/
|
*/
|
||||||
Deluge.OptionsManager = Ext.extend(Ext.util.Observable, {
|
Deluge.OptionsManager = Ext.extend(Ext.util.Observable, {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new instance of the OptionsManager.
|
||||||
|
*/
|
||||||
constructor: function(config) {
|
constructor: function(config) {
|
||||||
config = config || {};
|
config = config || {};
|
||||||
this.binds = {};
|
this.binds = {};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue