Skip to content

Commit dbaaef2

Browse files
committed
release v1.7.2
1 parent 185f2b0 commit dbaaef2

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
v1.7.2 - Thu, 09 Mar 2017 03:59:52 GMT
2+
--------------------------------------
3+
4+
-
5+
6+
17
v1.7.1 - Thu, 02 Mar 2017 14:49:30 GMT
28
--------------------------------------
39

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.1",
3+
"version": "1.7.2",
44
"homepage": "https://github.com/reactjs/react-modal",
55
"authors": [
66
"Ryan Florence",

dist/react-modal.js

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

161-
setTimeout(this.removePortal.bind(this), closesAt - now);
161+
setTimeout(function () {
162+
this.removePortal();
163+
}, closesAt - now);
162164
} else {
163165
this.removePortal();
164166
}

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.

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.1",
3+
"version": "1.7.2",
44
"description": "Accessible modal dialog component for React.JS",
55
"main": "./lib/index.js",
66
"repository": {

scripts/build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/sh
2-
webpack --config webpack.dist.config.js
2+
node_modules/.bin/webpack --config webpack.dist.config.js

0 commit comments

Comments
 (0)