Skip to content

Commit

Permalink
release v1.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
claydiffrient committed Mar 9, 2017
1 parent 185f2b0 commit dbaaef2
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
v1.7.2 - Thu, 09 Mar 2017 03:59:52 GMT
--------------------------------------

-


v1.7.1 - Thu, 02 Mar 2017 14:49:30 GMT
--------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-modal",
"version": "1.7.1",
"version": "1.7.2",
"homepage": "https://github.com/reactjs/react-modal",
"authors": [
"Ryan Florence",
Expand Down
4 changes: 3 additions & 1 deletion dist/react-modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,9 @@ return /******/ (function(modules) { // webpackBootstrap
this.portal.closeWithTimeout();
}

setTimeout(this.removePortal.bind(this), closesAt - now);
setTimeout(function () {
this.removePortal();
}, closesAt - now);
} else {
this.removePortal();
}
Expand Down
2 changes: 1 addition & 1 deletion dist/react-modal.min.js

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": "react-modal",
"version": "1.7.1",
"version": "1.7.2",
"description": "Accessible modal dialog component for React.JS",
"main": "./lib/index.js",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion scripts/build
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
webpack --config webpack.dist.config.js
node_modules/.bin/webpack --config webpack.dist.config.js

0 comments on commit dbaaef2

Please sign in to comment.