Skip to content

Commit d57b589

Browse files
Portugal, Marcelomportuga
Portugal, Marcelo
authored andcommitted
docs(GridRow.js): Minor documentation fixes.
1 parent 47d394c commit d57b589

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/js/core/factories/GridRow.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@ angular.module('ui.grid')
44
.factory('GridRow', ['gridUtil', 'uiGridConstants', function(gridUtil, uiGridConstants) {
55

66
/**
7+
* @class GridRow
78
* @ngdoc function
89
* @name ui.grid.class:GridRow
910
* @description GridRow is the viewModel for one logical row on the grid. A grid Row is not necessarily a one-to-one
1011
* relation to gridOptions.data.
1112
* @param {object} entity the array item from GridOptions.data
1213
* @param {number} index the current position of the row in the array
13-
* @param {Grid} reference to the parent grid
14+
* @param {Grid} grid reference to the parent grid
1415
*/
1516
function GridRow(entity, index, grid) {
1617

@@ -64,7 +65,7 @@ angular.module('ui.grid')
6465
/**
6566
* @ngdoc object
6667
* @name height
67-
* @propertyOf ui.grid.class:GridRow
68+
* @propertyOf ui.grid.class:GridRow
6869
* @description height of each individual row. changing the height will flag all
6970
* row renderContainers to recalculate their canvas height
7071
*/
@@ -86,7 +87,7 @@ angular.module('ui.grid')
8687
* @methodOf ui.grid.class:GridRow
8788
* @description returns the qualified field name as it exists on scope
8889
* ie: row.entity.fieldA
89-
* @param {GridCol} col column instance
90+
* @param {GridColumn} col column instance
9091
* @returns {string} resulting name that can be evaluated on scope
9192
*/
9293
GridRow.prototype.getQualifiedColField = function(col) {
@@ -99,7 +100,7 @@ angular.module('ui.grid')
99100
* @methodOf ui.grid.class:GridRow
100101
* @description returns the qualified field name minus the row path
101102
* ie: entity.fieldA
102-
* @param {GridCol} col column instance
103+
* @param {GridColumn} col column instance
103104
* @returns {string} resulting name that can be evaluated against a row
104105
*/
105106
GridRow.prototype.getEntityQualifiedColField = function(col) {

0 commit comments

Comments
 (0)