Skip to content

Commit

Permalink
Updating build to 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
orneryd committed Dec 18, 2012
1 parent 7d066c7 commit c954924
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion build/KoGrid.debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* koGrid 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/18/2012 12:50:03
* Compiled At: 12/18/2012 12:55:08
***********************************************/

(function(window, undefined){
Expand Down Expand Up @@ -566,6 +566,7 @@ kg.Column = function (config, grid) {
if (event.ctrlKey) {
self.toggleVisible();
kg.domUtilityService.BuildStyles(grid);
grid.config.columnsChanged(grid.columns.peek());
return true;
}
event.target.parentElement.style.cursor = 'col-resize';
Expand Down
3 changes: 2 additions & 1 deletion koGrid-2.1.1.debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* koGrid 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/18/2012 12:50:03
* Compiled At: 12/18/2012 12:55:08
***********************************************/

(function(window, undefined){
Expand Down Expand Up @@ -566,6 +566,7 @@ kg.Column = function (config, grid) {
if (event.ctrlKey) {
self.toggleVisible();
kg.domUtilityService.BuildStyles(grid);
grid.config.columnsChanged(grid.columns.peek());
return true;
}
event.target.parentElement.style.cursor = 'col-resize';
Expand Down
4 changes: 2 additions & 2 deletions koGrid-2.1.1.js

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

1 change: 1 addition & 0 deletions src/classes/column.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@
if (event.ctrlKey) {
self.toggleVisible();
kg.domUtilityService.BuildStyles(grid);
grid.config.columnsChanged(grid.columns.peek());
return true;
}
event.target.parentElement.style.cursor = 'col-resize';
Expand Down

0 comments on commit c954924

Please sign in to comment.