Skip to content

Commit 02a16ce

Browse files
committed
release v1.7.3
1 parent e1df119 commit 02a16ce

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

Diff for: CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
v1.7.3 - Tue, 14 Mar 2017 01:22:00 GMT
2+
--------------------------------------
3+
4+
- [e1df119](../../commit/e1df119) [fixed] remove portal context in timeout (#353)
5+
6+
17
v1.7.2 - Thu, 09 Mar 2017 03:59:52 GMT
28
--------------------------------------
39

Diff for: bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-modal",
3-
"version": "1.7.2",
3+
"version": "1.7.3",
44
"homepage": "https://github.com/reactjs/react-modal",
55
"authors": [
66
"Ryan Florence",

Diff for: dist/react-modal.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,9 @@ return /******/ (function(modules) { // webpackBootstrap
158158
this.portal.closeWithTimeout();
159159
}
160160

161+
var that = this;
161162
setTimeout(function () {
162-
this.removePortal();
163+
that.removePortal();
163164
}, closesAt - now);
164165
} else {
165166
this.removePortal();

Diff for: dist/react-modal.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-modal",
3-
"version": "1.7.2",
3+
"version": "1.7.3",
44
"description": "Accessible modal dialog component for React.JS",
55
"main": "./lib/index.js",
66
"repository": {

0 commit comments

Comments
 (0)