diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b6bc03ec0d..773468e2515 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/dist/jquery.handsontable.full.css b/dist/jquery.handsontable.full.css index 27484c595ae..d10a82a7064 100644 --- a/dist/jquery.handsontable.full.css +++ b/dist/jquery.handsontable.full.css @@ -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 { diff --git a/dist/jquery.handsontable.full.js b/dist/jquery.handsontable.full.js index 909af93ec9d..144abd629cd 100644 --- a/dist/jquery.handsontable.full.js +++ b/dist/jquery.handsontable.full.js @@ -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 */ @@ -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 = { @@ -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; }; diff --git a/handsontable.jquery.json b/handsontable.jquery.json index 492f8962013..082fdac68fd 100644 --- a/handsontable.jquery.json +++ b/handsontable.jquery.json @@ -1,7 +1,7 @@ { "name": "handsontable", "title": "Handsontable", - "version": "0.8.18", + "version": "0.8.19", "author": { "name": "Marcin Warpechowski", "email": "marcin@nextgen.pl", diff --git a/jquery.handsontable.css b/jquery.handsontable.css index 681faa04780..b7f58c7a1b9 100644 --- a/jquery.handsontable.css +++ b/jquery.handsontable.css @@ -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 { diff --git a/jquery.handsontable.js b/jquery.handsontable.js index fdf046b09e8..5537341a3fc 100644 --- a/jquery.handsontable.js +++ b/jquery.handsontable.js @@ -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 */ @@ -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 = { @@ -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; }; diff --git a/package.json b/package.json index 0555c4a39d9..2c607a7aca3 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "url": "https://github.com/warpech/jquery-handsontable/issues" }, "author": "Marcin Warpechowski ", - "version": "0.8.18", + "version": "0.8.19", "devDependencies": { "grunt": "~0.4.0", "grunt-replace": "~0.4.0",