|
|
@ -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]; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|