I have a module that follows this pattern.
/**
* @name Filters
* @namespace
*/
var Filters = (function (Filters, $) {
Filters.switchView = function (newView) {
// do something
};
return Filters;
})(Filters || {}, jQuery);
I then have a submodule for the Filters module
Filters.validator = (function (Filters, $) {
var validator = {};
validator.toggleErrorState = function (state, el) {
// do something
}
return validator;
})(Filters || {}, jQuery);
I can't figure out how to document the submodule. I've done some searches and haven't found anyone else that follows this particular pattern that is documenting with jsdoc style comments. Any help would be greatly appreciated.
This documents both namespaces. First file:
Second file: