Skip to content

Commit

Permalink
release v0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mzabriskie committed Dec 3, 2014
1 parent 2f1973b commit 734acb5
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 16 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
v0.0.6 - Wed, 03 Dec 2014 21:24:45 GMT
--------------------------------------

- [28dbc63](../../commit/28dbc63) [added] Supporting custom overlay className closes #14
- [6626dae](../../commit/6626dae) [fixed] erroneous alias in webpack build


v0.0.5 - Thu, 13 Nov 2014 18:55:47 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": "0.0.5",
"version": "0.0.6",
"homepage": "https://github.com/rackt/react-modal",
"authors": [
"Ryan Florence",
Expand Down
20 changes: 7 additions & 13 deletions dist/react-modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,8 @@ var ModalPortal = module.exports = React.createClass({
render: function() {
return this.shouldBeClosed() ? div() : (
div({
className: this.buildClassName('overlay'),
ref: "overlay",
className: cx(this.buildClassName('overlay'), this.props.overlayClassName),
style: this.overlayStyles,
onClick: this.handleOverlayClick
},
Expand Down Expand Up @@ -442,19 +443,12 @@ module.exports = _dereq_('./components/Modal');

},{"./components/Modal":1}],9:[function(_dereq_,module,exports){
/**
* Copyright 2013-2014 Facebook, Inc.
* Copyright 2013-2014, Facebook, Inc.
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* @providesModule cx
*/
Expand Down
Loading

0 comments on commit 734acb5

Please sign in to comment.