Skip to content

Commit

Permalink
Updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Hopfner committed Jun 3, 2016
1 parent 53725a6 commit 8511698
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions dist/husky.js
Original file line number Diff line number Diff line change
Expand Up @@ -34671,7 +34671,7 @@ define('husky_components/datagrid/decorators/infinite-scroll-pagination',[],func

/**
* Merges one or more data-records with a given ones and updates the view
* @param records {Object|Array} the new data-record or an array of data-records
* @param {Object|Array} records the new data-record or an array of data-records
*/
changeRecordsHandler: function(records) {
if (!this.sandbox.dom.isArray(records)) {
Expand All @@ -34687,7 +34687,7 @@ define('husky_components/datagrid/decorators/infinite-scroll-pagination',[],func

/**
* Deletes all records, sets given records and updates the view
* @param records {Array} array of data-records
* @param {Array} records array of data-records
*/
setRecordsHandler: function(records) {
// Delete all records.
Expand All @@ -34702,7 +34702,7 @@ define('husky_components/datagrid/decorators/infinite-scroll-pagination',[],func

/**
* calls the clickCallback for an item
* @param id {Number|String} the id of the item
* @param {Number|String} id the id of the item
*/
itemClicked: function(id) {
if (typeof this.options.clickCallback === 'function') {
Expand Down
6 changes: 3 additions & 3 deletions husky_components/datagrid/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -1698,7 +1698,7 @@

/**
* Merges one or more data-records with a given ones and updates the view
* @param records {Object|Array} the new data-record or an array of data-records
* @param {Object|Array} records the new data-record or an array of data-records
*/
changeRecordsHandler: function(records) {
if (!this.sandbox.dom.isArray(records)) {
Expand All @@ -1714,7 +1714,7 @@

/**
* Deletes all records, sets given records and updates the view
* @param records {Array} array of data-records
* @param {Array} records array of data-records
*/
setRecordsHandler: function(records) {
// Delete all records.
Expand All @@ -1729,7 +1729,7 @@

/**
* calls the clickCallback for an item
* @param id {Number|String} the id of the item
* @param {Number|String} id the id of the item
*/
itemClicked: function(id) {
if (typeof this.options.clickCallback === 'function') {
Expand Down

0 comments on commit 8511698

Please sign in to comment.