mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
53 lines
1.0 KiB
JavaScript
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() {
|
|
}
|
|
};
|
|
}
|
|
);
|