JSDoc all the things

This commit is contained in:
Keegan
2016-02-09 17:19:41 -08:00
parent c0f6fb770c
commit 6f182b7358
11 changed files with 83 additions and 42 deletions
+6 -2
View File
@@ -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() {