36 lines
554 B
JavaScript
36 lines
554 B
JavaScript
/**
|
|
* Describe the namespace.
|
|
* @namespace dollar(1)
|
|
*/
|
|
|
|
/**
|
|
* Describe the constructor.
|
|
* @constructor dollar(2)
|
|
* @param {object} [options]
|
|
*/
|
|
|
|
/**
|
|
* Describe the global function.
|
|
* @function dollar(3)
|
|
* @param {string} selector - The selector string.
|
|
*/
|
|
dollar = function(a, b) {
|
|
};
|
|
|
|
/**
|
|
* Describe the instance method.
|
|
* @instance
|
|
* @function empty
|
|
* @memberof dollar(2)
|
|
*/
|
|
dollar.prototype.empty = function() {
|
|
}
|
|
|
|
/**
|
|
* Describe the static method.
|
|
* @function klass
|
|
* @memberof dollar(1)
|
|
* @param {string} name
|
|
*/
|
|
dollar.klass = function(name) {
|
|
};
|