tweak the doc strings (although jsdoc-toolkit still seems to be failing)
This commit is contained in:
parent
eb889c1e33
commit
174d974da8
@ -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…
x
Reference in New Issue
Block a user