Skip to content

Commit

Permalink
docs: fix jsdoc for private methods
Browse files Browse the repository at this point in the history
  • Loading branch information
heenakwag committed Oct 30, 2019
1 parent fa8a24e commit 9e52ad8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/js/datepicker/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -532,13 +532,15 @@ var DatePicker = snippet.defineClass(

/**
* Show the date picker element
* @private
*/
_show: function() {
domUtil.removeClass(this._element, CLASS_NAME_HIDDEN);
},

/**
* Hide the date picker element
* @private
*/
_hide: function() {
domUtil.addClass(this._element, CLASS_NAME_HIDDEN);
Expand Down Expand Up @@ -615,6 +617,7 @@ var DatePicker = snippet.defineClass(
/**
* Event handler for click of calendar
* @param {Event} ev An event object
* @private
*/
_onClickHandler: function(ev) {
var target = util.getTarget(ev);
Expand Down

0 comments on commit 9e52ad8

Please sign in to comment.