Skip to content

Commit 6fd8456

Browse files
committed
release v0.0.7
1 parent ea31beb commit 6fd8456

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
v0.0.7 - Sat, 03 Jan 2015 06:44:47 GMT
2+
--------------------------------------
3+
4+
-
5+
6+
17
v0.0.6 - Wed, 03 Dec 2014 21:24:45 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": "0.0.6",
3+
"version": "0.0.7",
44
"homepage": "https://github.com/rackt/react-modal",
55
"authors": [
66
"Ryan Florence",

dist/react-modal.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var f;"undefined"!=typeof window?f=window:"undefined"!=typeof global?f=global:"undefined"!=typeof self&&(f=self),f.ReactModal=e()}}(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(_dereq_,module,exports){
2-
/** @jsx React.DOM */
32
var React = (typeof window !== "undefined" ? window.React : typeof global !== "undefined" ? global.React : null);
4-
var ModalPortal = _dereq_('./ModalPortal');
3+
var ModalPortal = React.createFactory(_dereq_('./ModalPortal'));
54
var ariaAppHider = _dereq_('../helpers/ariaAppHider');
65
var injectCSS = _dereq_('../helpers/injectCSS');
76

@@ -54,7 +53,7 @@ var Modal = module.exports = React.createClass({
5453
if (this.portal)
5554
this.portal.setProps(props);
5655
else
57-
this.portal = React.renderComponent(ModalPortal(props), this.node);
56+
this.portal = React.render(ModalPortal(props), this.node);
5857
},
5958

6059
render: function () {

0 commit comments

Comments
 (0)