mirror of
https://github.com/pebble-dev/clay.git
synced 2026-09-06 00:57:21 -04:00
JSDoc all the things
This commit is contained in:
@@ -12,10 +12,14 @@ var ctx;
|
||||
|
||||
var eventCounter = 0;
|
||||
|
||||
var createEventName = function() {
|
||||
/**
|
||||
* Create a unique event name
|
||||
* @returns {string}
|
||||
*/
|
||||
function createEventName() {
|
||||
eventCounter++;
|
||||
return 'test-event-' + eventCounter;
|
||||
};
|
||||
}
|
||||
|
||||
describe('ClayEvents', function() {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user