mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-11 10:32:22 +03:00
16 lines
379 B
JavaScript
16 lines
379 B
JavaScript
|
/**
|
||
|
@overview This is just an example.
|
||
|
@module plugins/shout
|
||
|
@author Michael Mathews <micmath@gmail.com>
|
||
|
*/
|
||
|
|
||
|
exports.handlers = {
|
||
|
/**
|
||
|
Make your descriptions more shoutier.
|
||
|
*/
|
||
|
newDoclet: function(e) {
|
||
|
if (typeof e.doclet.description === 'string') {
|
||
|
e.doclet.description = e.doclet.description.toUpperCase();
|
||
|
}
|
||
|
}
|
||
|
};
|