Skip to content

Commit

Permalink
still fixing merge issues!
Browse files Browse the repository at this point in the history
  • Loading branch information
orneryd committed Dec 4, 2012
1 parent 218a47d commit 1a2afcf
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ local.properties
*.user
*.sln.docstates
*.sln
*.
*.nupkg
*.nuspec
*.*roj
workbench/jquery*
workbench/bootstrap*
Expand Down
4 changes: 2 additions & 2 deletions build/KoGrid.debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* ng-grid JavaScript Library
* Authors: https://github.com/ericmbarnard/koGrid/blob/master/README.md
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
* Compiled At: 12/04/2012 09:30:01
* Compiled At: 12/04/2012 10:47:46
***********************************************/

(function(window, undefined){
Expand Down Expand Up @@ -1604,7 +1604,7 @@ kg.SelectionService = function (grid) {
// @return - boolean indicating if all items are selected or not
// @val - boolean indicating whether to select all/de-select all
self.toggleSelectAll = function (checkAll) {
var selectedlength = self.selectedItems.length;
var selectedlength = self.selectedItems().length;
if (selectedlength > 0) {
self.selectedItems.splice(0, selectedlength);
}
Expand Down
4 changes: 2 additions & 2 deletions koGrid-2.0.0.debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* ng-grid JavaScript Library
* Authors: https://github.com/ericmbarnard/koGrid/blob/master/README.md
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
* Compiled At: 12/04/2012 09:30:01
* Compiled At: 12/04/2012 10:47:46
***********************************************/

(function(window, undefined){
Expand Down Expand Up @@ -1604,7 +1604,7 @@ kg.SelectionService = function (grid) {
// @return - boolean indicating if all items are selected or not
// @val - boolean indicating whether to select all/de-select all
self.toggleSelectAll = function (checkAll) {
var selectedlength = self.selectedItems.length;
var selectedlength = self.selectedItems().length;
if (selectedlength > 0) {
self.selectedItems.splice(0, selectedlength);
}
Expand Down
4 changes: 2 additions & 2 deletions koGrid-2.0.0.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/classes/selectionService.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ kg.SelectionService = function (grid) {
// @return - boolean indicating if all items are selected or not
// @val - boolean indicating whether to select all/de-select all
self.toggleSelectAll = function (checkAll) {
var selectedlength = self.selectedItems.length;
var selectedlength = self.selectedItems().length;
if (selectedlength > 0) {
self.selectedItems.splice(0, selectedlength);
}
Expand Down

0 comments on commit 1a2afcf

Please sign in to comment.