Сообщение от Gozar
|
Кто как расписывает аргументы в виде объекта?
|
@cfg, как в ext doc, нету?
/**
* @class Car.Radio A simple car radio
* @namespace Car
* @extends ElectronicThing
* @cfg {integer} numberOfButtons The number of buttons on this radio.
* @cfg {boolean} hasCdPlayer True if the radio has a CD player; otherwise false.
* @constructor
* @param {object} configObj
* An object containing the required configuration options for this class
* /
Car.Radio = function(configObj) {
...
};