Skip to content

Commit

Permalink
release v1.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
claydiffrient committed Apr 13, 2017
1 parent 1db0ee1 commit 4bae32b
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 26 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.5 - Thu, 13 Apr 2017 14:20:34 GMT
--------------------------------------

- [1db0ee1](../../commit/1db0ee1) [fixed] remove es2015 from v1 branch


v1.7.4 - Thu, 13 Apr 2017 13:37:19 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.4",
"version": "1.7.5",
"homepage": "https://github.com/reactjs/react-modal",
"authors": [
"Ryan Florence",
Expand Down
38 changes: 16 additions & 22 deletions dist/react-modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -3042,31 +3042,25 @@ return /******/ (function(modules) { // webpackBootstrap

"use strict";

Object.defineProperty(exports, "__esModule", {
value: true
});
exports.add = add;
exports.remove = remove;
exports.count = count;
var modals = [];

function add(element) {
if (modals.indexOf(element) === -1) {
modals.push(element);
}
}

function remove(element) {
var index = modals.indexOf(element);
if (index === -1) {
return;
module.exports = {
add: function add(element) {
if (modals.indexOf(element) === -1) {
modals.push(element);
}
},
remove: function remove(element) {
var index = modals.indexOf(element);
if (index === -1) {
return;
}
modals.splice(index, 1);
},
count: function count() {
return modals.length;
}
modals.splice(index, 1);
}

function count() {
return modals.length;
}
};

/***/ },
/* 24 */
Expand Down
Loading

0 comments on commit 4bae32b

Please sign in to comment.