Skip to content

Commit

Permalink
release v0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mzabriskie committed Jan 3, 2015
1 parent ea31beb commit 6fd8456
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
v0.0.7 - Sat, 03 Jan 2015 06:44:47 GMT
--------------------------------------

-


v0.0.6 - Wed, 03 Dec 2014 21:24:45 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.6",
"version": "0.0.7",
"homepage": "https://github.com/rackt/react-modal",
"authors": [
"Ryan Florence",
Expand Down
5 changes: 2 additions & 3 deletions dist/react-modal.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
!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){
/** @jsx React.DOM */
var React = (typeof window !== "undefined" ? window.React : typeof global !== "undefined" ? global.React : null);
var ModalPortal = _dereq_('./ModalPortal');
var ModalPortal = React.createFactory(_dereq_('./ModalPortal'));
var ariaAppHider = _dereq_('../helpers/ariaAppHider');
var injectCSS = _dereq_('../helpers/injectCSS');

Expand Down Expand Up @@ -54,7 +53,7 @@ var Modal = module.exports = React.createClass({
if (this.portal)
this.portal.setProps(props);
else
this.portal = React.renderComponent(ModalPortal(props), this.node);
this.portal = React.render(ModalPortal(props), this.node);
},

render: function () {
Expand Down
Loading

0 comments on commit 6fd8456

Please sign in to comment.