mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-23 00:46:16 -04:00
first-commit
This commit is contained in:
commit
325c322a27
207 changed files with 35989 additions and 0 deletions
54
doc/jsdoc-toolkit/app/test/event.js
Normal file
54
doc/jsdoc-toolkit/app/test/event.js
Normal file
|
@ -0,0 +1,54 @@
|
|||
/**
|
||||
* @name Kitchen
|
||||
* @constructor
|
||||
* @fires Bakery#event:donutOrdered
|
||||
*/
|
||||
|
||||
/**
|
||||
* Fired when some cake is eaten.
|
||||
* @name Kitchen#event:cakeEaten
|
||||
* @function
|
||||
* @param {Number} pieces The number of pieces eaten.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Find out if cake was eaten.
|
||||
* @name Kitchen#cakeEaten
|
||||
* @function
|
||||
* @param {Boolean} wasEaten
|
||||
*/
|
||||
|
||||
/**
|
||||
* @name getDesert
|
||||
* @function
|
||||
* @fires Kitchen#event:cakeEaten
|
||||
*/
|
||||
|
||||
/**
|
||||
* @name Bakery
|
||||
* @constructor
|
||||
* @extends Kitchen
|
||||
*/
|
||||
|
||||
/**
|
||||
* Fired when a donut order is made.
|
||||
* @name Bakery#event:donutOrdered
|
||||
* @event
|
||||
* @param {Event} e The event object.
|
||||
* @param {String} [e.topping] Optional sprinkles.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
* @borrows Bakery#event:donutOrdered as this.event:cakeOrdered
|
||||
*/
|
||||
function CakeShop() {
|
||||
}
|
||||
|
||||
/** @event */
|
||||
CakeShop.prototype.icingReady = function(isPink) {
|
||||
}
|
||||
|
||||
/** @event */
|
||||
function amHungry(/**Boolean*/enoughToEatAHorse) {
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue