Browse Source

Update website for 0.14.7

(cherry picked from commit e48343bd038bff190d2566a4f9c6f70babbfa02b)
main
Scott Feeney 9 years ago
committed by Paul O’Shannessy
parent
commit
c8862ac9cd
  1. 8
      _config.yml
  2. BIN
      downloads/react-0.14.7.zip
  3. 4
      js/react-dom.js
  4. 18
      js/react.js

8
_config.yml

@ -2,9 +2,9 @@
name: React
description: A JavaScript library for building user interfaces
url: https://facebook.github.io
baseurl: "/react"
permalink: "/blog/:year/:month/:day/:title.html"
paginate_path: "/blog/page:num/"
baseurl: /react
permalink: /blog/:year/:month/:day/:title.html
paginate_path: /blog/page:num/
relative_permalinks: true
paginate: 5
timezone: America/Los_Angeles
@ -36,4 +36,4 @@ sass:
sass_dir: _css
gems:
- jekyll-redirect-from
react_version: 0.14.6
react_version: 0.14.7

BIN
downloads/react-0.14.7.zip

Binary file not shown.

4
js/react-dom.js

@ -1,5 +1,5 @@
/**
* ReactDOM v0.14.6
* ReactDOM v0.14.7
*
* Copyright 2013-2015, Facebook, Inc.
* All rights reserved.
@ -21,7 +21,7 @@
// <script>
} else {
var g
var g;
if (typeof window !== "undefined") {
g = window;
} else if (typeof global !== "undefined") {

18
js/react.js

@ -1,5 +1,5 @@
/**
* React v0.14.6
* React v0.14.7
*/
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.React = f()}})(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);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.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){
/**
@ -7710,7 +7710,10 @@ var ReactDOMOption = {
}
});
nativeProps.children = content;
if (content) {
nativeProps.children = content;
}
return nativeProps;
}
@ -13840,7 +13843,7 @@ module.exports = ReactUpdates;
'use strict';
module.exports = '0.14.6';
module.exports = '0.14.7';
},{}],85:[function(_dereq_,module,exports){
/**
* Copyright 2013-2015, Facebook, Inc.
@ -14932,6 +14935,7 @@ var warning = _dereq_(155);
*/
var EventInterface = {
type: null,
target: null,
// currentTarget is set when dispatching; no use in copying it here
currentTarget: emptyFunction.thatReturnsNull,
eventPhase: null,
@ -14965,8 +14969,6 @@ function SyntheticEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEvent
this.dispatchConfig = dispatchConfig;
this.dispatchMarker = dispatchMarker;
this.nativeEvent = nativeEvent;
this.target = nativeEventTarget;
this.currentTarget = nativeEventTarget;
var Interface = this.constructor.Interface;
for (var propName in Interface) {
@ -14977,7 +14979,11 @@ function SyntheticEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEvent
if (normalize) {
this[propName] = normalize(nativeEvent);
} else {
this[propName] = nativeEvent[propName];
if (propName === 'target') {
this.target = nativeEventTarget;
} else {
this[propName] = nativeEvent[propName];
}
}
}

Loading…
Cancel
Save