jsdoc/test/samples/etc_requirejs.js
2010-12-18 21:33:17 +00:00

53 lines
1.0 KiB
JavaScript

/**
* @module ./webui/utils.strings
*/
define('./webui/utils.strings',
function() {
var strings = {};
/** @method module:"./webui/utils.strings".twiddle */
strings.twiddle = function() {
}
return strings;
}
);
/**
* Interactive graphical user elements.
* @module ui/widget
* @requires module:"./webui/utils.strings"
*/
define('ui/widget',
['./webui/utils.strings'],
function(strings) {
return {
/**
* Initialise the widget.
* @method module:ui/widget.init
*/
init: function() {
}
};
}
);
/**
* Interactive graphical user elements.
* @module ui/Kaleidoscope
* @requires module:ui/widget
* @requires module:"./webui/utils.strings"
*/
define('ui/Kaleidoscope',
['ui/widget', './webui/utils.strings'],
function(w, s) {
return {
/**
* @memberof module:ui/Kaleidoscope
*/
twirl: function() {
}
};
}
);