Skip to content

Commit

Permalink
update jsdoc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
dongwoo committed Nov 3, 2015
1 parent d72680e commit 3f6cd66
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion jsdoc.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"default": {
"outputSourceFiles" : true
},
"applicationName": "Grid",
"applicationName": "tui-grid",
"disqus": "",
"googleAnalytics": "",
"openGraph": {
Expand Down
2 changes: 1 addition & 1 deletion src/js/grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ var View = require('./base/view');
var Core = require('./core');

/**
* ne
* Toast UI
* @namespace
*/
tui = window.tui = tui || {};
Expand Down
4 changes: 2 additions & 2 deletions src/js/model/selection.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ var Selection = Model.extend(/**@lends module:model/selection.prototype */{

/**
* Returns whether the selection is enabled.
* @return {[type]} [description]
* @return {boolean} True is selection is enabled.
*/
isEnabled: function() {
return this._isEnabled;
Expand Down Expand Up @@ -262,7 +262,7 @@ var Selection = Model.extend(/**@lends module:model/selection.prototype */{

/**
* Adjusts scrollTop value.
* @param {[type]} overflowY - 1 | 0 | -1
* @param {number} overflowY - 1 | 0 | -1
* @param {number} scrollTop - Current scrollTop value
* @param {number} maxScrollTop - Max scrollTop value
* @private
Expand Down

0 comments on commit 3f6cd66

Please sign in to comment.