Skip to content

Commit

Permalink
Handsontable 0.8.19
Browse files Browse the repository at this point in the history
  • Loading branch information
warpech committed Apr 12, 2013
1 parent 70e2812 commit b9e77d0
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## HEAD
## [0.8.19](https://github.com/warpech/jquery-handsontable/tree/v0.8.19) (Apr 12, 2013)

Bugfix:
- table width was not correctly read from container width
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.handsontable.full.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/**
* Handsontable 0.8.18
* Handsontable 0.8.19
* Handsontable is a simple jQuery plugin for editable tables with basic copy-paste compatibility with Excel and Google Docs
*
* Copyright 2012, Marcin Warpechowski
* Licensed under the MIT license.
* http://handsontable.com/
*
* Date: Fri Apr 12 2013 11:44:21 GMT+0200 (Central European Daylight Time)
* Date: Fri Apr 12 2013 12:30:50 GMT+0200 (Central European Daylight Time)
*/

.handsontable {
Expand Down
8 changes: 4 additions & 4 deletions dist/jquery.handsontable.full.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/**
* Handsontable 0.8.18
* Handsontable 0.8.19
* Handsontable is a simple jQuery plugin for editable tables with basic copy-paste compatibility with Excel and Google Docs
*
* Copyright 2012, Marcin Warpechowski
* Licensed under the MIT license.
* http://handsontable.com/
*
* Date: Fri Apr 12 2013 11:44:21 GMT+0200 (Central European Daylight Time)
* Date: Fri Apr 12 2013 12:30:50 GMT+0200 (Central European Daylight Time)
*/
/*jslint white: true, browser: true, plusplus: true, indent: 4, maxerr: 50 */

Expand Down Expand Up @@ -2255,7 +2255,7 @@ Handsontable.Core = function (rootElement, settings) {
/**
* Handsontable version
*/
this.version = '0.8.18'; //inserted by grunt from package.json
this.version = '0.8.19'; //inserted by grunt from package.json
};

var settings = {
Expand Down Expand Up @@ -2595,7 +2595,7 @@ Handsontable.TableView.prototype.isCellEdited = function () {
};

Handsontable.TableView.prototype.getWidth = function () {
var val = typeof this.settings.width !== void 0 ? this.settings.width : this.settingsFromDOM.width;
var val = this.settings.width !== void 0 ? this.settings.width : this.settingsFromDOM.width;
return typeof val === 'function' ? val() : val;
};

Expand Down
2 changes: 1 addition & 1 deletion handsontable.jquery.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "handsontable",
"title": "Handsontable",
"version": "0.8.18",
"version": "0.8.19",
"author": {
"name": "Marcin Warpechowski",
"email": "[email protected]",
Expand Down
4 changes: 2 additions & 2 deletions jquery.handsontable.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/**
* Handsontable 0.8.18
* Handsontable 0.8.19
* Handsontable is a simple jQuery plugin for editable tables with basic copy-paste compatibility with Excel and Google Docs
*
* Copyright 2012, Marcin Warpechowski
* Licensed under the MIT license.
* http://handsontable.com/
*
* Date: Fri Apr 12 2013 11:44:21 GMT+0200 (Central European Daylight Time)
* Date: Fri Apr 12 2013 12:30:50 GMT+0200 (Central European Daylight Time)
*/

.handsontable {
Expand Down
8 changes: 4 additions & 4 deletions jquery.handsontable.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/**
* Handsontable 0.8.18
* Handsontable 0.8.19
* Handsontable is a simple jQuery plugin for editable tables with basic copy-paste compatibility with Excel and Google Docs
*
* Copyright 2012, Marcin Warpechowski
* Licensed under the MIT license.
* http://handsontable.com/
*
* Date: Fri Apr 12 2013 11:44:21 GMT+0200 (Central European Daylight Time)
* Date: Fri Apr 12 2013 12:30:50 GMT+0200 (Central European Daylight Time)
*/
/*jslint white: true, browser: true, plusplus: true, indent: 4, maxerr: 50 */

Expand Down Expand Up @@ -2255,7 +2255,7 @@ Handsontable.Core = function (rootElement, settings) {
/**
* Handsontable version
*/
this.version = '0.8.18'; //inserted by grunt from package.json
this.version = '0.8.19'; //inserted by grunt from package.json
};

var settings = {
Expand Down Expand Up @@ -2595,7 +2595,7 @@ Handsontable.TableView.prototype.isCellEdited = function () {
};

Handsontable.TableView.prototype.getWidth = function () {
var val = typeof this.settings.width !== void 0 ? this.settings.width : this.settingsFromDOM.width;
var val = this.settings.width !== void 0 ? this.settings.width : this.settingsFromDOM.width;
return typeof val === 'function' ? val() : val;
};

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"url": "https://github.com/warpech/jquery-handsontable/issues"
},
"author": "Marcin Warpechowski <[email protected]>",
"version": "0.8.18",
"version": "0.8.19",
"devDependencies": {
"grunt": "~0.4.0",
"grunt-replace": "~0.4.0",
Expand Down

0 comments on commit b9e77d0

Please sign in to comment.