Skip to content

Commit

Permalink
fixing build
Browse files Browse the repository at this point in the history
  • Loading branch information
orneryd committed Jun 5, 2013
1 parent 235b760 commit 6b94d5a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build/ng-grid.debug.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/***********************************************
/***********************************************
* ng-grid JavaScript Library
* Authors: https://github.com/angular-ui/ng-grid/blob/master/README.md
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
Expand Down Expand Up @@ -1645,7 +1645,7 @@ var ngGrid = function ($scope, options, sortService, domUtilityService, $filter,
var isLast = (i === (asterisksArray.length - 1));
var t = col.width.length;
$scope.columns[col.index].width = asteriskVal * t;
$scope.columns[col.index].width -= isLast ? 0 : 1;
$scope.columns[col.index].width -= isLast ? 0 : 2;
if (col.visible !== false) {
totalWidth += $scope.columns[col.index].width;
}
Expand Down
2 changes: 1 addition & 1 deletion build/ng-grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -1417,7 +1417,7 @@ var ngGrid = function ($scope, options, sortService, domUtilityService, $filter,
var isLast = (i === (asterisksArray.length - 1));
var t = col.width.length;
$scope.columns[col.index].width = asteriskVal * t;
$scope.columns[col.index].width -= isLast ? 0 : 1;
$scope.columns[col.index].width -= isLast ? 0 : 2;
if (col.visible !== false) {
totalWidth += $scope.columns[col.index].width;
}
Expand Down
2 changes: 1 addition & 1 deletion build/ng-grid.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ng-grid-2.0.6.debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -1645,7 +1645,7 @@ var ngGrid = function ($scope, options, sortService, domUtilityService, $filter,
var isLast = (i === (asterisksArray.length - 1));
var t = col.width.length;
$scope.columns[col.index].width = asteriskVal * t;
$scope.columns[col.index].width -= isLast ? 0 : 1;
$scope.columns[col.index].width -= isLast ? 0 : 2;
if (col.visible !== false) {
totalWidth += $scope.columns[col.index].width;
}
Expand Down
2 changes: 1 addition & 1 deletion ng-grid-2.0.6.min.js

Large diffs are not rendered by default.

0 comments on commit 6b94d5a

Please sign in to comment.