Skip to content

Commit

Permalink
Update Grid.js
Browse files Browse the repository at this point in the history
Fixes scope declaration in documentation.
  • Loading branch information
JLLeitschuh committed Aug 11, 2015
1 parent 64dca05 commit a42dab2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/core/factories/Grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ angular.module('ui.grid')
* getColumnSorting, which is an array of gridColumns
* that have sorting on them, sorted in priority order.
*
* @param {$scope} The scope of the controller. This is used to deregister this event when the scope is destroyed.
* @param {$scope} scope The scope of the controller. This is used to deregister this event when the scope is destroyed.
* @param {Function} callBack Will be called when the event is emited. The function passes back an array of columns with
* sorts on them, in priority order.
*
Expand All @@ -398,7 +398,7 @@ angular.module('ui.grid')
* @description The visibility of a column has changed,
* the column itself is passed out as a parameter of the event.
*
* @param {$scope} The scope of the controller. This is used to deregister this event when the scope is destroyed.
* @param {$scope} scope The scope of the controller. This is used to deregister this event when the scope is destroyed.
* @param {Function} callBack Will be called when the event is emited. The function passes back the GridCol that has changed.
*
* @example
Expand Down

0 comments on commit a42dab2

Please sign in to comment.