Skip to content

Commit

Permalink
Fix JSDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
tadatuta committed Feb 4, 2018
1 parent 1a938dc commit 742fd31
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,10 @@ var EVENT_PREFIX = '__bem__',
}
});

provide({
provide(/** @exports */ {
/**
* Emits BEM event
* @augments i-bem-dom__events_type_bem
* @param {BemDomEntity} ctx
* @param {String|Object|events:Event} e Event name
* @param {Object} [data]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ var doc = document,
* Returns a snapshot of the event, with writable properties.
*
* @param {Event} event An event that contains properties to copy.
* @returns {Object} An object containing shallow copies of `inEvent`'s
* properties.
* @returns {Object} An object containing shallow copies of `inEvent`'s properties.
*/
function cloneEvent(event) {
var eventCopy = $.extend(new $.Event(), event);
Expand Down Expand Up @@ -83,6 +82,7 @@ var MOUSE_PROPS = {
/*!
* Pointer event constructor
*
* @class PointerEvent
* @param {String} type
* @param {Object} [params]
* @returns {Event}
Expand Down

0 comments on commit 742fd31

Please sign in to comment.