Skip to content

Commit

Permalink
v2.1.2 (#687)
Browse files Browse the repository at this point in the history
  • Loading branch information
joneit authored Jan 30, 2018
1 parent 7a05bba commit 18d4cd1
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*.css
*.html

/add-ons
/[0-9]*
/demo
/doc
/html/*.html
Expand All @@ -24,3 +24,4 @@
!/src/cellRenderers/index.js
!/src/cellEditors/index.js
!/src/renderer/index.js
!/src/features/index.js
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ It also highlights a DOM-based custom external editor triggered via hypergrid ev
<img src="images/README/gridshot04.gif">

## Table of Contents
* [Current Release](#current-release-211---29-january-2018)
* [Current Release](#current-release-212---29-january-2018)
* [Demos](#demos)
* [Features](#features)
* [Testing](#testing)
* [Documentation](#developer-documentation)
* [Roadmap](#roadmap)
* [Contributing](#contributors)

### Current Release (2.1.1 - 29 January 2018)
### Current Release (2.1.2 - 29 January 2018)

**Hypergrid 2.1.1** includes bug fixes as well as some new properties and methods that offer new capabilities.
**Hypergrid 2.1.2** includes bug fixes as well as some new properties and methods that offer new capabilities.

_For a complete list of changes, see the [release notes](https://github.com/fin-hypergrid/core/releases)._

Expand Down
3 changes: 1 addition & 2 deletions demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@

</head>
<body>
<h1 style="margin:.5em; color:lightgrey">Hypergrid 2.1.1 dev testbench</h1>

<h1 style="margin:.5em; color:lightgrey">Hypergrid 2.1.2 dev testbench</h1>

<div id="tabs">
<div id="tab-dashboard">Dashboard</div>
Expand Down
2 changes: 1 addition & 1 deletion demo/multiple-grids.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<style> body > div.hypergrid-container { width: 415px; margin-right: 10px; display: inline-block }</style>
</head>
<body>
<h1 style="margin:.5em; color:lightgrey">Hypergrid 2.1.1 multiple grids demo</h1>
<h1 style="margin:.5em; color:lightgrey">Hypergrid 2.1.2 multiple grids demo</h1>

<script src="build/fin-hypergrid.js"></script>

Expand Down
2 changes: 1 addition & 1 deletion demo/row-props.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</style>
</head>
<body>
<h1 style="margin:.5em; color:lightgrey">Hypergrid 2.1.1 performance workbench</h1>
<h1 style="margin:.5em; color:lightgrey">Hypergrid 2.1.2 performance workbench</h1>

<div id="controls" class="nowrap">
<label id="controller" title="Uncheck to hide other controls.">
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fin-hypergrid",
"version": "2.1.1",
"version": "2.1.2",
"description": "Canvas-based high-performance grid",
"repository": {
"type": "git",
Expand Down
2 changes: 2 additions & 0 deletions src/Hypergrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,8 @@ var Hypergrid = Base.extend('Hypergrid', {
document.addEventListener('mousedown', this.mouseCatcher = function() {
this.abortEditing();
}.bind(this));

setTimeout(this.repaint.bind(this));
},

terminate: function() {
Expand Down

0 comments on commit 18d4cd1

Please sign in to comment.