Skip to content

Commit 734acb5

Browse files
committed
release v0.0.6
1 parent 2f1973b commit 734acb5

File tree

5 files changed

+17
-16
lines changed

5 files changed

+17
-16
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
v0.0.6 - Wed, 03 Dec 2014 21:24:45 GMT
2+
--------------------------------------
3+
4+
- [28dbc63](../../commit/28dbc63) [added] Supporting custom overlay className closes #14
5+
- [6626dae](../../commit/6626dae) [fixed] erroneous alias in webpack build
6+
7+
18
v0.0.5 - Thu, 13 Nov 2014 18:55:47 GMT
29
--------------------------------------
310

bower.json

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

dist/react-modal.js

+7-13
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,8 @@ var ModalPortal = module.exports = React.createClass({
211211
render: function() {
212212
return this.shouldBeClosed() ? div() : (
213213
div({
214-
className: this.buildClassName('overlay'),
214+
ref: "overlay",
215+
className: cx(this.buildClassName('overlay'), this.props.overlayClassName),
215216
style: this.overlayStyles,
216217
onClick: this.handleOverlayClick
217218
},
@@ -442,19 +443,12 @@ module.exports = _dereq_('./components/Modal');
442443

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

0 commit comments

Comments
 (0)