Last active
August 29, 2016 18:00
-
-
Save zpao/bd773ac94f934f832dc0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- build_old/react.js 2014-10-14 21:38:43.000000000 -0700 | |
+++ build/react.js 2014-10-14 21:49:41.000000000 -0700 | |
@@ -1,12 +1,198 @@ | |
/** | |
* React v0.12.0-alpha | |
*/ | |
-!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.React=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){ | |
+!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.React=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);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){ | |
+/** | |
+ * Copyright 2013-2014, Facebook, Inc. | |
+ * All rights reserved. | |
+ * | |
+ * This source code is licensed under the BSD-style license found in the | |
+ * LICENSE file in the root directory of this source tree. An additional grant | |
+ * of patent rights can be found in the PATENTS file in the same directory. | |
+ * | |
+ * @providesModule React | |
+ */ | |
+ | |
+"use strict"; | |
+ | |
+// TODO: Move this elsewhere - it only exists in open source until a better | |
+// solution is found. | |
+_dereq_("./Object.es6"); | |
+ | |
+var DOMPropertyOperations = _dereq_("./DOMPropertyOperations"); | |
+var EventPluginUtils = _dereq_("./EventPluginUtils"); | |
+var ReactChildren = _dereq_("./ReactChildren"); | |
+var ReactComponent = _dereq_("./ReactComponent"); | |
+var ReactCompositeComponent = _dereq_("./ReactCompositeComponent"); | |
+var ReactContext = _dereq_("./ReactContext"); | |
+var ReactCurrentOwner = _dereq_("./ReactCurrentOwner"); | |
+var ReactElement = _dereq_("./ReactElement"); | |
+var ReactElementValidator = _dereq_("./ReactElementValidator"); | |
+var ReactDOM = _dereq_("./ReactDOM"); | |
+var ReactDOMComponent = _dereq_("./ReactDOMComponent"); | |
+var ReactDefaultInjection = _dereq_("./ReactDefaultInjection"); | |
+var ReactInstanceHandles = _dereq_("./ReactInstanceHandles"); | |
+var ReactLegacyElement = _dereq_("./ReactLegacyElement"); | |
+var ReactMount = _dereq_("./ReactMount"); | |
+var ReactMultiChild = _dereq_("./ReactMultiChild"); | |
+var ReactPerf = _dereq_("./ReactPerf"); | |
+var ReactPropTypes = _dereq_("./ReactPropTypes"); | |
+var ReactServerRendering = _dereq_("./ReactServerRendering"); | |
+var ReactTextComponent = _dereq_("./ReactTextComponent"); | |
+ | |
+var deprecated = _dereq_("./deprecated"); | |
+var onlyChild = _dereq_("./onlyChild"); | |
+ | |
+ReactDefaultInjection.inject(); | |
+ | |
+var createElement = ReactElement.createElement; | |
+var createFactory = ReactElement.createFactory; | |
+ | |
+if ("production" !== "development") { | |
+ createElement = ReactElementValidator.createElement; | |
+ createFactory = ReactElementValidator.createFactory; | |
+} | |
+ | |
+// TODO: Drop legacy elements once classes no longer export these factories | |
+createElement = ReactLegacyElement.wrapCreateElement( | |
+ createElement | |
+); | |
+createFactory = ReactLegacyElement.wrapCreateFactory( | |
+ createFactory | |
+); | |
+ | |
+var render = ReactPerf.measure('React', 'render', ReactMount.render); | |
+ | |
+var React = { | |
+ Children: { | |
+ map: ReactChildren.map, | |
+ forEach: ReactChildren.forEach, | |
+ count: ReactChildren.count, | |
+ only: onlyChild | |
+ }, | |
+ DOM: ReactDOM, | |
+ PropTypes: ReactPropTypes, | |
+ initializeTouchEvents: function(shouldUseTouch) { | |
+ EventPluginUtils.useTouchEvents = shouldUseTouch; | |
+ }, | |
+ createClass: ReactCompositeComponent.createClass, | |
+ createElement: createElement, | |
+ createFactory: createFactory, | |
+ constructAndRenderComponent: ReactMount.constructAndRenderComponent, | |
+ constructAndRenderComponentByID: ReactMount.constructAndRenderComponentByID, | |
+ render: render, | |
+ renderToString: ReactServerRendering.renderToString, | |
+ renderToStaticMarkup: ReactServerRendering.renderToStaticMarkup, | |
+ unmountComponentAtNode: ReactMount.unmountComponentAtNode, | |
+ isValidClass: ReactLegacyElement.isValidFactory, | |
+ isValidElement: ReactElement.isValidElement, | |
+ withContext: ReactContext.withContext, | |
+ | |
+ // Deprecations (remove for 0.13) | |
+ renderComponent: deprecated( | |
+ 'React', | |
+ 'renderComponent', | |
+ 'render', | |
+ this, | |
+ render | |
+ ), | |
+ renderComponentToString: deprecated( | |
+ 'React', | |
+ 'renderComponentToString', | |
+ 'renderToString', | |
+ this, | |
+ ReactServerRendering.renderToString | |
+ ), | |
+ renderComponentToStaticMarkup: deprecated( | |
+ 'React', | |
+ 'renderComponentToStaticMarkup', | |
+ 'renderToStaticMarkup', | |
+ this, | |
+ ReactServerRendering.renderToStaticMarkup | |
+ ), | |
+ isValidComponent: deprecated( | |
+ 'React', | |
+ 'isValidComponent', | |
+ 'isValidElement', | |
+ this, | |
+ ReactElement.isValidElement | |
+ ) | |
+}; | |
+ | |
+// Inject the runtime into a devtools global hook regardless of browser. | |
+// Allows for debugging when the hook is injected on the page. | |
+if ( | |
+ typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' && | |
+ typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.inject === 'function') { | |
+ __REACT_DEVTOOLS_GLOBAL_HOOK__.inject({ | |
+ Component: ReactComponent, | |
+ CurrentOwner: ReactCurrentOwner, | |
+ DOMComponent: ReactDOMComponent, | |
+ DOMPropertyOperations: DOMPropertyOperations, | |
+ InstanceHandles: ReactInstanceHandles, | |
+ Mount: ReactMount, | |
+ MultiChild: ReactMultiChild, | |
+ TextComponent: ReactTextComponent | |
+ }); | |
+} | |
+ | |
+if ("production" !== "development") { | |
+ var ExecutionEnvironment = _dereq_("./ExecutionEnvironment"); | |
+ if (ExecutionEnvironment.canUseDOM && window.top === window.self) { | |
+ | |
+ // If we're in Chrome, look for the devtools marker and provide a download | |
+ // link if not installed. | |
+ if (navigator.userAgent.indexOf('Chrome') > -1) { | |
+ if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined') { | |
+ console.debug( | |
+ 'Download the React DevTools for a better development experience: ' + | |
+ 'http://fb.me/react-devtools' | |
+ ); | |
+ } | |
+ } | |
+ | |
+ var expectedFeatures = [ | |
+ // shims | |
+ Array.isArray, | |
+ Array.prototype.every, | |
+ Array.prototype.forEach, | |
+ Array.prototype.indexOf, | |
+ Array.prototype.map, | |
+ Date.now, | |
+ Function.prototype.bind, | |
+ Object.keys, | |
+ String.prototype.split, | |
+ String.prototype.trim, | |
+ | |
+ // shams | |
+ Object.create, | |
+ Object.freeze | |
+ ]; | |
+ | |
+ for (var i = 0; i < expectedFeatures.length; i++) { | |
+ if (!expectedFeatures[i]) { | |
+ console.error( | |
+ 'One or more ES5 shim/shams expected by React are not available: ' + | |
+ 'http://fb.me/react-warning-polyfills' | |
+ ); | |
+ break; | |
+ } | |
+ } | |
+ } | |
+} | |
+ | |
+// Version exists only in the open-source version of React, not in Facebook's | |
+// internal version. | |
+React.version = '0.12.0-alpha'; | |
+ | |
+module.exports = React; | |
+ | |
+},{"./DOMPropertyOperations":12,"./EventPluginUtils":20,"./ExecutionEnvironment":22,"./Object.es6":27,"./ReactChildren":31,"./ReactComponent":32,"./ReactCompositeComponent":34,"./ReactContext":35,"./ReactCurrentOwner":36,"./ReactDOM":37,"./ReactDOMComponent":39,"./ReactDefaultInjection":49,"./ReactElement":52,"./ReactElementValidator":53,"./ReactInstanceHandles":60,"./ReactLegacyElement":61,"./ReactMount":63,"./ReactMultiChild":64,"./ReactPerf":68,"./ReactPropTypes":72,"./ReactServerRendering":76,"./ReactTextComponent":78,"./deprecated":106,"./onlyChild":137}],2:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -23,17 +209,17 @@ | |
if (this.props.autoFocus) { | |
focusNode(this.getDOMNode()); | |
} | |
} | |
}; | |
module.exports = AutoFocusMixin; | |
-},{"./focusNode":111}],2:[function(_dereq_,module,exports){ | |
+},{"./focusNode":111}],3:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013 Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -245,17 +431,17 @@ | |
fallbackChars = null; | |
EventPropagators.accumulateTwoPhaseDispatches(event); | |
return event; | |
} | |
}; | |
module.exports = BeforeInputEventPlugin; | |
-},{"./EventConstants":15,"./EventPropagators":20,"./ExecutionEnvironment":21,"./SyntheticInputEvent":89,"./keyOf":133}],3:[function(_dereq_,module,exports){ | |
+},{"./EventConstants":16,"./EventPropagators":21,"./ExecutionEnvironment":22,"./SyntheticInputEvent":89,"./keyOf":133}],4:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -361,17 +547,17 @@ | |
var CSSProperty = { | |
isUnitlessNumber: isUnitlessNumber, | |
shorthandPropertyExpansions: shorthandPropertyExpansions | |
}; | |
module.exports = CSSProperty; | |
-},{}],4:[function(_dereq_,module,exports){ | |
+},{}],5:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -494,17 +680,17 @@ | |
} | |
} | |
} | |
}; | |
module.exports = CSSPropertyOperations; | |
-},{"./CSSProperty":3,"./ExecutionEnvironment":21,"./camelizeStyleName":100,"./dangerousStyleValue":105,"./hyphenateStyleName":124,"./memoizeStringOnly":135,"./warning":145}],5:[function(_dereq_,module,exports){ | |
+},{"./CSSProperty":4,"./ExecutionEnvironment":22,"./camelizeStyleName":100,"./dangerousStyleValue":105,"./hyphenateStyleName":124,"./memoizeStringOnly":135,"./warning":145}],6:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -591,17 +777,17 @@ | |
} | |
}); | |
PooledClass.addPoolingTo(CallbackQueue); | |
module.exports = CallbackQueue; | |
-},{"./PooledClass":27,"./invariant":126}],6:[function(_dereq_,module,exports){ | |
+},{"./PooledClass":28,"./invariant":126}],7:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -973,17 +1159,17 @@ | |
); | |
} | |
} | |
}; | |
module.exports = ChangeEventPlugin; | |
-},{"./EventConstants":15,"./EventPluginHub":17,"./EventPropagators":20,"./ExecutionEnvironment":21,"./ReactUpdates":79,"./SyntheticEvent":87,"./isEventSupported":127,"./isTextInputElement":129,"./keyOf":133}],7:[function(_dereq_,module,exports){ | |
+},{"./EventConstants":16,"./EventPluginHub":18,"./EventPropagators":21,"./ExecutionEnvironment":22,"./ReactUpdates":79,"./SyntheticEvent":87,"./isEventSupported":127,"./isTextInputElement":129,"./keyOf":133}],8:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -998,17 +1184,17 @@ | |
var ClientReactRootIndex = { | |
createReactRootIndex: function() { | |
return nextReactRootIndex++; | |
} | |
}; | |
module.exports = ClientReactRootIndex; | |
-},{}],8:[function(_dereq_,module,exports){ | |
+},{}],9:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -1257,17 +1443,17 @@ | |
EventPropagators.accumulateTwoPhaseDispatches(event); | |
return event; | |
} | |
} | |
}; | |
module.exports = CompositionEventPlugin; | |
-},{"./EventConstants":15,"./EventPropagators":20,"./ExecutionEnvironment":21,"./ReactInputSelection":59,"./SyntheticCompositionEvent":85,"./getTextContentAccessor":121,"./keyOf":133}],9:[function(_dereq_,module,exports){ | |
+},{"./EventConstants":16,"./EventPropagators":21,"./ExecutionEnvironment":22,"./ReactInputSelection":59,"./SyntheticCompositionEvent":85,"./getTextContentAccessor":121,"./keyOf":133}],10:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -1430,17 +1616,17 @@ | |
} | |
} | |
} | |
}; | |
module.exports = DOMChildrenOperations; | |
-},{"./Danger":12,"./ReactMultiChildUpdateTypes":65,"./getTextContentAccessor":121,"./invariant":126}],10:[function(_dereq_,module,exports){ | |
+},{"./Danger":13,"./ReactMultiChildUpdateTypes":65,"./getTextContentAccessor":121,"./invariant":126}],11:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -1727,17 +1913,17 @@ | |
return nodeDefaults[prop]; | |
}, | |
injection: DOMPropertyInjection | |
}; | |
module.exports = DOMProperty; | |
-},{"./invariant":126}],11:[function(_dereq_,module,exports){ | |
+},{"./invariant":126}],12:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -1922,17 +2108,17 @@ | |
warnUnknownProperty(name); | |
} | |
} | |
}; | |
module.exports = DOMPropertyOperations; | |
-},{"./DOMProperty":10,"./escapeTextForBrowser":109,"./memoizeStringOnly":135,"./warning":145}],12:[function(_dereq_,module,exports){ | |
+},{"./DOMProperty":11,"./escapeTextForBrowser":109,"./memoizeStringOnly":135,"./warning":145}],13:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -2106,17 +2292,17 @@ | |
var newChild = createNodesFromMarkup(markup, emptyFunction)[0]; | |
oldChild.parentNode.replaceChild(newChild, oldChild); | |
} | |
}; | |
module.exports = Danger; | |
-},{"./ExecutionEnvironment":21,"./createNodesFromMarkup":104,"./emptyFunction":107,"./getMarkupWrap":118,"./invariant":126}],13:[function(_dereq_,module,exports){ | |
+},{"./ExecutionEnvironment":22,"./createNodesFromMarkup":104,"./emptyFunction":107,"./getMarkupWrap":118,"./invariant":126}],14:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -2146,17 +2332,17 @@ | |
keyOf({CompositionEventPlugin: null}), | |
keyOf({BeforeInputEventPlugin: null}), | |
keyOf({AnalyticsEventPlugin: null}), | |
keyOf({MobileSafariClickEventPlugin: null}) | |
]; | |
module.exports = DefaultEventPluginOrder; | |
-},{"./keyOf":133}],14:[function(_dereq_,module,exports){ | |
+},{"./keyOf":133}],15:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -2286,17 +2472,17 @@ | |
return extractedEvents; | |
} | |
}; | |
module.exports = EnterLeaveEventPlugin; | |
-},{"./EventConstants":15,"./EventPropagators":20,"./ReactMount":63,"./SyntheticMouseEvent":91,"./keyOf":133}],15:[function(_dereq_,module,exports){ | |
+},{"./EventConstants":16,"./EventPropagators":21,"./ReactMount":63,"./SyntheticMouseEvent":91,"./keyOf":133}],16:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -2358,17 +2544,17 @@ | |
var EventConstants = { | |
topLevelTypes: topLevelTypes, | |
PropagationPhases: PropagationPhases | |
}; | |
module.exports = EventConstants; | |
-},{"./keyMirror":132}],16:[function(_dereq_,module,exports){ | |
+},{"./keyMirror":132}],17:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014 Facebook, Inc. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
@@ -2446,17 +2632,17 @@ | |
} | |
}, | |
registerDefault: function() {} | |
}; | |
module.exports = EventListener; | |
-},{"./emptyFunction":107}],17:[function(_dereq_,module,exports){ | |
+},{"./emptyFunction":107}],18:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -2720,17 +2906,17 @@ | |
__getListenerBank: function() { | |
return listenerBank; | |
} | |
}; | |
module.exports = EventPluginHub; | |
-},{"./EventPluginRegistry":18,"./EventPluginUtils":19,"./accumulateInto":97,"./forEachAccumulated":112,"./invariant":126}],18:[function(_dereq_,module,exports){ | |
+},{"./EventPluginRegistry":19,"./EventPluginUtils":20,"./accumulateInto":97,"./forEachAccumulated":112,"./invariant":126}],19:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -2998,17 +3184,17 @@ | |
} | |
} | |
} | |
}; | |
module.exports = EventPluginRegistry; | |
-},{"./invariant":126}],19:[function(_dereq_,module,exports){ | |
+},{"./invariant":126}],20:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -3217,17 +3403,17 @@ | |
executeDispatchesInOrderStopAtTrue: executeDispatchesInOrderStopAtTrue, | |
hasDispatches: hasDispatches, | |
injection: injection, | |
useTouchEvents: false | |
}; | |
module.exports = EventPluginUtils; | |
-},{"./EventConstants":15,"./invariant":126}],20:[function(_dereq_,module,exports){ | |
+},{"./EventConstants":16,"./invariant":126}],21:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -3357,17 +3543,17 @@ | |
var EventPropagators = { | |
accumulateTwoPhaseDispatches: accumulateTwoPhaseDispatches, | |
accumulateDirectDispatches: accumulateDirectDispatches, | |
accumulateEnterLeaveDispatches: accumulateEnterLeaveDispatches | |
}; | |
module.exports = EventPropagators; | |
-},{"./EventConstants":15,"./EventPluginHub":17,"./accumulateInto":97,"./forEachAccumulated":112}],21:[function(_dereq_,module,exports){ | |
+},{"./EventConstants":16,"./EventPluginHub":18,"./accumulateInto":97,"./forEachAccumulated":112}],22:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -3402,17 +3588,17 @@ | |
canUseViewport: canUseDOM && !!window.screen, | |
isInWorker: !canUseDOM // For now, this is true - might change in the future. | |
}; | |
module.exports = ExecutionEnvironment; | |
-},{}],22:[function(_dereq_,module,exports){ | |
+},{}],23:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -3588,17 +3774,17 @@ | |
spellCheck: 'spellcheck', | |
srcDoc: 'srcdoc', | |
srcSet: 'srcset' | |
} | |
}; | |
module.exports = HTMLDOMPropertyConfig; | |
-},{"./DOMProperty":10,"./ExecutionEnvironment":21}],23:[function(_dereq_,module,exports){ | |
+},{"./DOMProperty":11,"./ExecutionEnvironment":22}],24:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -3742,17 +3928,17 @@ | |
return _handleLinkedCheckChange; | |
} | |
return input.props.onChange; | |
} | |
}; | |
module.exports = LinkedValueUtils; | |
-},{"./ReactPropTypes":72,"./invariant":126}],24:[function(_dereq_,module,exports){ | |
+},{"./ReactPropTypes":72,"./invariant":126}],25:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -3790,17 +3976,17 @@ | |
if (this._localEventListeners) { | |
forEachAccumulated(this._localEventListeners, remove); | |
} | |
} | |
}; | |
module.exports = LocalEventTrapMixin; | |
-},{"./ReactBrowserEventEmitter":30,"./accumulateInto":97,"./forEachAccumulated":112,"./invariant":126}],25:[function(_dereq_,module,exports){ | |
+},{"./ReactBrowserEventEmitter":30,"./accumulateInto":97,"./forEachAccumulated":112,"./invariant":126}],26:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -3848,17 +4034,17 @@ | |
} | |
} | |
} | |
}; | |
module.exports = MobileSafariClickEventPlugin; | |
-},{"./EventConstants":15,"./emptyFunction":107}],26:[function(_dereq_,module,exports){ | |
+},{"./EventConstants":16,"./emptyFunction":107}],27:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -3895,17 +4081,17 @@ | |
} | |
} | |
} | |
return to; | |
}; | |
} | |
-},{}],27:[function(_dereq_,module,exports){ | |
+},{}],28:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -4009,203 +4195,17 @@ | |
oneArgumentPooler: oneArgumentPooler, | |
twoArgumentPooler: twoArgumentPooler, | |
threeArgumentPooler: threeArgumentPooler, | |
fiveArgumentPooler: fiveArgumentPooler | |
}; | |
module.exports = PooledClass; | |
-},{"./invariant":126}],28:[function(_dereq_,module,exports){ | |
-/** | |
- * Copyright 2013-2014, Facebook, Inc. | |
- * All rights reserved. | |
- * | |
- * This source code is licensed under the BSD-style license found in the | |
- * LICENSE file in the root directory of this source tree. An additional grant | |
- * of patent rights can be found in the PATENTS file in the same directory. | |
- * | |
- * @providesModule React | |
- */ | |
- | |
-"use strict"; | |
- | |
-// TODO: Move this elsewhere - it only exists in open source until a better | |
-// solution is found. | |
-_dereq_("./Object.es6"); | |
- | |
-var DOMPropertyOperations = _dereq_("./DOMPropertyOperations"); | |
-var EventPluginUtils = _dereq_("./EventPluginUtils"); | |
-var ReactChildren = _dereq_("./ReactChildren"); | |
-var ReactComponent = _dereq_("./ReactComponent"); | |
-var ReactCompositeComponent = _dereq_("./ReactCompositeComponent"); | |
-var ReactContext = _dereq_("./ReactContext"); | |
-var ReactCurrentOwner = _dereq_("./ReactCurrentOwner"); | |
-var ReactElement = _dereq_("./ReactElement"); | |
-var ReactElementValidator = _dereq_("./ReactElementValidator"); | |
-var ReactDOM = _dereq_("./ReactDOM"); | |
-var ReactDOMComponent = _dereq_("./ReactDOMComponent"); | |
-var ReactDefaultInjection = _dereq_("./ReactDefaultInjection"); | |
-var ReactInstanceHandles = _dereq_("./ReactInstanceHandles"); | |
-var ReactLegacyElement = _dereq_("./ReactLegacyElement"); | |
-var ReactMount = _dereq_("./ReactMount"); | |
-var ReactMultiChild = _dereq_("./ReactMultiChild"); | |
-var ReactPerf = _dereq_("./ReactPerf"); | |
-var ReactPropTypes = _dereq_("./ReactPropTypes"); | |
-var ReactServerRendering = _dereq_("./ReactServerRendering"); | |
-var ReactTextComponent = _dereq_("./ReactTextComponent"); | |
- | |
-var deprecated = _dereq_("./deprecated"); | |
-var onlyChild = _dereq_("./onlyChild"); | |
- | |
-ReactDefaultInjection.inject(); | |
- | |
-var createElement = ReactElement.createElement; | |
-var createFactory = ReactElement.createFactory; | |
- | |
-if ("production" !== "development") { | |
- createElement = ReactElementValidator.createElement; | |
- createFactory = ReactElementValidator.createFactory; | |
-} | |
- | |
-// TODO: Drop legacy elements once classes no longer export these factories | |
-createElement = ReactLegacyElement.wrapCreateElement( | |
- createElement | |
-); | |
-createFactory = ReactLegacyElement.wrapCreateFactory( | |
- createFactory | |
-); | |
- | |
-var render = ReactPerf.measure('React', 'render', ReactMount.render); | |
- | |
-var React = { | |
- Children: { | |
- map: ReactChildren.map, | |
- forEach: ReactChildren.forEach, | |
- count: ReactChildren.count, | |
- only: onlyChild | |
- }, | |
- DOM: ReactDOM, | |
- PropTypes: ReactPropTypes, | |
- initializeTouchEvents: function(shouldUseTouch) { | |
- EventPluginUtils.useTouchEvents = shouldUseTouch; | |
- }, | |
- createClass: ReactCompositeComponent.createClass, | |
- createElement: createElement, | |
- createFactory: createFactory, | |
- constructAndRenderComponent: ReactMount.constructAndRenderComponent, | |
- constructAndRenderComponentByID: ReactMount.constructAndRenderComponentByID, | |
- render: render, | |
- renderToString: ReactServerRendering.renderToString, | |
- renderToStaticMarkup: ReactServerRendering.renderToStaticMarkup, | |
- unmountComponentAtNode: ReactMount.unmountComponentAtNode, | |
- isValidClass: ReactLegacyElement.isValidFactory, | |
- isValidElement: ReactElement.isValidElement, | |
- withContext: ReactContext.withContext, | |
- | |
- // Deprecations (remove for 0.13) | |
- renderComponent: deprecated( | |
- 'React', | |
- 'renderComponent', | |
- 'render', | |
- this, | |
- render | |
- ), | |
- renderComponentToString: deprecated( | |
- 'React', | |
- 'renderComponentToString', | |
- 'renderToString', | |
- this, | |
- ReactServerRendering.renderToString | |
- ), | |
- renderComponentToStaticMarkup: deprecated( | |
- 'React', | |
- 'renderComponentToStaticMarkup', | |
- 'renderToStaticMarkup', | |
- this, | |
- ReactServerRendering.renderToStaticMarkup | |
- ), | |
- isValidComponent: deprecated( | |
- 'React', | |
- 'isValidComponent', | |
- 'isValidElement', | |
- this, | |
- ReactElement.isValidElement | |
- ) | |
-}; | |
- | |
-// Inject the runtime into a devtools global hook regardless of browser. | |
-// Allows for debugging when the hook is injected on the page. | |
-if ( | |
- typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' && | |
- typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.inject === 'function') { | |
- __REACT_DEVTOOLS_GLOBAL_HOOK__.inject({ | |
- Component: ReactComponent, | |
- CurrentOwner: ReactCurrentOwner, | |
- DOMComponent: ReactDOMComponent, | |
- DOMPropertyOperations: DOMPropertyOperations, | |
- InstanceHandles: ReactInstanceHandles, | |
- Mount: ReactMount, | |
- MultiChild: ReactMultiChild, | |
- TextComponent: ReactTextComponent | |
- }); | |
-} | |
- | |
-if ("production" !== "development") { | |
- var ExecutionEnvironment = _dereq_("./ExecutionEnvironment"); | |
- if (ExecutionEnvironment.canUseDOM && window.top === window.self) { | |
- | |
- // If we're in Chrome, look for the devtools marker and provide a download | |
- // link if not installed. | |
- if (navigator.userAgent.indexOf('Chrome') > -1) { | |
- if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined') { | |
- console.debug( | |
- 'Download the React DevTools for a better development experience: ' + | |
- 'http://fb.me/react-devtools' | |
- ); | |
- } | |
- } | |
- | |
- var expectedFeatures = [ | |
- // shims | |
- Array.isArray, | |
- Array.prototype.every, | |
- Array.prototype.forEach, | |
- Array.prototype.indexOf, | |
- Array.prototype.map, | |
- Date.now, | |
- Function.prototype.bind, | |
- Object.keys, | |
- String.prototype.split, | |
- String.prototype.trim, | |
- | |
- // shams | |
- Object.create, | |
- Object.freeze | |
- ]; | |
- | |
- for (var i = 0; i < expectedFeatures.length; i++) { | |
- if (!expectedFeatures[i]) { | |
- console.error( | |
- 'One or more ES5 shim/shams expected by React are not available: ' + | |
- 'http://fb.me/react-warning-polyfills' | |
- ); | |
- break; | |
- } | |
- } | |
- } | |
-} | |
- | |
-// Version exists only in the open-source version of React, not in Facebook's | |
-// internal version. | |
-React.version = '0.12.0-alpha'; | |
- | |
-module.exports = React; | |
- | |
-},{"./DOMPropertyOperations":11,"./EventPluginUtils":19,"./ExecutionEnvironment":21,"./Object.es6":26,"./ReactChildren":31,"./ReactComponent":32,"./ReactCompositeComponent":34,"./ReactContext":35,"./ReactCurrentOwner":36,"./ReactDOM":37,"./ReactDOMComponent":39,"./ReactDefaultInjection":49,"./ReactElement":52,"./ReactElementValidator":53,"./ReactInstanceHandles":60,"./ReactLegacyElement":61,"./ReactMount":63,"./ReactMultiChild":64,"./ReactPerf":68,"./ReactPropTypes":72,"./ReactServerRendering":76,"./ReactTextComponent":78,"./deprecated":106,"./onlyChild":137}],29:[function(_dereq_,module,exports){ | |
+},{"./invariant":126}],29:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -4590,17 +4590,17 @@ | |
deleteListener: EventPluginHub.deleteListener, | |
deleteAllListeners: EventPluginHub.deleteAllListeners | |
}); | |
module.exports = ReactBrowserEventEmitter; | |
-},{"./EventConstants":15,"./EventPluginHub":17,"./EventPluginRegistry":18,"./ReactEventEmitterMixin":56,"./ViewportMetrics":96,"./isEventSupported":127}],31:[function(_dereq_,module,exports){ | |
+},{"./EventConstants":16,"./EventPluginHub":18,"./EventPluginRegistry":19,"./ReactEventEmitterMixin":56,"./ViewportMetrics":96,"./isEventSupported":127}],31:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -4738,17 +4738,17 @@ | |
var ReactChildren = { | |
forEach: forEachChildren, | |
map: mapChildren, | |
count: countChildren | |
}; | |
module.exports = ReactChildren; | |
-},{"./PooledClass":27,"./traverseAllChildren":144,"./warning":145}],32:[function(_dereq_,module,exports){ | |
+},{"./PooledClass":28,"./traverseAllChildren":144,"./warning":145}],32:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -7075,17 +7075,17 @@ | |
return button(props, this.props.children); | |
} | |
}); | |
module.exports = ReactDOMButton; | |
-},{"./AutoFocusMixin":1,"./ReactBrowserComponentMixin":29,"./ReactCompositeComponent":34,"./ReactDOM":37,"./ReactElement":52,"./keyMirror":132}],39:[function(_dereq_,module,exports){ | |
+},{"./AutoFocusMixin":2,"./ReactBrowserComponentMixin":29,"./ReactCompositeComponent":34,"./ReactDOM":37,"./ReactElement":52,"./keyMirror":132}],39:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -7559,17 +7559,17 @@ | |
ReactComponent.Mixin, | |
ReactDOMComponent.Mixin, | |
ReactMultiChild.Mixin, | |
ReactBrowserComponentMixin | |
); | |
module.exports = ReactDOMComponent; | |
-},{"./CSSPropertyOperations":4,"./DOMProperty":10,"./DOMPropertyOperations":11,"./ReactBrowserComponentMixin":29,"./ReactBrowserEventEmitter":30,"./ReactComponent":32,"./ReactMount":63,"./ReactMultiChild":64,"./ReactPerf":68,"./escapeTextForBrowser":109,"./invariant":126,"./isEventSupported":127,"./keyOf":133,"./monitorCodeUse":136}],40:[function(_dereq_,module,exports){ | |
+},{"./CSSPropertyOperations":5,"./DOMProperty":11,"./DOMPropertyOperations":12,"./ReactBrowserComponentMixin":29,"./ReactBrowserEventEmitter":30,"./ReactComponent":32,"./ReactMount":63,"./ReactMultiChild":64,"./ReactPerf":68,"./escapeTextForBrowser":109,"./invariant":126,"./isEventSupported":127,"./keyOf":133,"./monitorCodeUse":136}],40:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -7609,17 +7609,17 @@ | |
componentDidMount: function() { | |
this.trapBubbledEvent(EventConstants.topLevelTypes.topReset, 'reset'); | |
this.trapBubbledEvent(EventConstants.topLevelTypes.topSubmit, 'submit'); | |
} | |
}); | |
module.exports = ReactDOMForm; | |
-},{"./EventConstants":15,"./LocalEventTrapMixin":24,"./ReactBrowserComponentMixin":29,"./ReactCompositeComponent":34,"./ReactDOM":37,"./ReactElement":52}],41:[function(_dereq_,module,exports){ | |
+},{"./EventConstants":16,"./LocalEventTrapMixin":25,"./ReactBrowserComponentMixin":29,"./ReactCompositeComponent":34,"./ReactDOM":37,"./ReactElement":52}],41:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -7793,17 +7793,17 @@ | |
} | |
DOMChildrenOperations.processUpdates(updates, markup); | |
} | |
) | |
}; | |
module.exports = ReactDOMIDOperations; | |
-},{"./CSSPropertyOperations":4,"./DOMChildrenOperations":9,"./DOMPropertyOperations":11,"./ReactMount":63,"./ReactPerf":68,"./invariant":126,"./setInnerHTML":140}],42:[function(_dereq_,module,exports){ | |
+},{"./CSSPropertyOperations":5,"./DOMChildrenOperations":10,"./DOMPropertyOperations":12,"./ReactMount":63,"./ReactPerf":68,"./invariant":126,"./setInnerHTML":140}],42:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -7841,17 +7841,17 @@ | |
componentDidMount: function() { | |
this.trapBubbledEvent(EventConstants.topLevelTypes.topLoad, 'load'); | |
this.trapBubbledEvent(EventConstants.topLevelTypes.topError, 'error'); | |
} | |
}); | |
module.exports = ReactDOMImg; | |
-},{"./EventConstants":15,"./LocalEventTrapMixin":24,"./ReactBrowserComponentMixin":29,"./ReactCompositeComponent":34,"./ReactDOM":37,"./ReactElement":52}],43:[function(_dereq_,module,exports){ | |
+},{"./EventConstants":16,"./LocalEventTrapMixin":25,"./ReactBrowserComponentMixin":29,"./ReactCompositeComponent":34,"./ReactDOM":37,"./ReactElement":52}],43:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -8016,17 +8016,17 @@ | |
return returnValue; | |
} | |
}); | |
module.exports = ReactDOMInput; | |
-},{"./AutoFocusMixin":1,"./DOMPropertyOperations":11,"./LinkedValueUtils":23,"./ReactBrowserComponentMixin":29,"./ReactCompositeComponent":34,"./ReactDOM":37,"./ReactElement":52,"./ReactMount":63,"./ReactUpdates":79,"./invariant":126}],44:[function(_dereq_,module,exports){ | |
+},{"./AutoFocusMixin":2,"./DOMPropertyOperations":12,"./LinkedValueUtils":24,"./ReactBrowserComponentMixin":29,"./ReactCompositeComponent":34,"./ReactDOM":37,"./ReactElement":52,"./ReactMount":63,"./ReactUpdates":79,"./invariant":126}],44:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -8249,17 +8249,17 @@ | |
ReactUpdates.asap(updateWithPendingValueIfMounted, this); | |
return returnValue; | |
} | |
}); | |
module.exports = ReactDOMSelect; | |
-},{"./AutoFocusMixin":1,"./LinkedValueUtils":23,"./ReactBrowserComponentMixin":29,"./ReactCompositeComponent":34,"./ReactDOM":37,"./ReactElement":52,"./ReactUpdates":79}],46:[function(_dereq_,module,exports){ | |
+},{"./AutoFocusMixin":2,"./LinkedValueUtils":24,"./ReactBrowserComponentMixin":29,"./ReactCompositeComponent":34,"./ReactDOM":37,"./ReactElement":52,"./ReactUpdates":79}],46:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -8458,17 +8458,17 @@ | |
* @param {DOMElement|DOMTextNode} node | |
* @param {object} offsets | |
*/ | |
setOffsets: useIEOffsets ? setIEOffsets : setModernOffsets | |
}; | |
module.exports = ReactDOMSelection; | |
-},{"./ExecutionEnvironment":21,"./getNodeForCharacterOffset":119,"./getTextContentAccessor":121}],47:[function(_dereq_,module,exports){ | |
+},{"./ExecutionEnvironment":22,"./getNodeForCharacterOffset":119,"./getTextContentAccessor":121}],47:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -8596,17 +8596,17 @@ | |
ReactUpdates.asap(forceUpdateIfMounted, this); | |
return returnValue; | |
} | |
}); | |
module.exports = ReactDOMTextarea; | |
-},{"./AutoFocusMixin":1,"./DOMPropertyOperations":11,"./LinkedValueUtils":23,"./ReactBrowserComponentMixin":29,"./ReactCompositeComponent":34,"./ReactDOM":37,"./ReactElement":52,"./ReactUpdates":79,"./invariant":126,"./warning":145}],48:[function(_dereq_,module,exports){ | |
+},{"./AutoFocusMixin":2,"./DOMPropertyOperations":12,"./LinkedValueUtils":24,"./ReactBrowserComponentMixin":29,"./ReactCompositeComponent":34,"./ReactDOM":37,"./ReactElement":52,"./ReactUpdates":79,"./invariant":126,"./warning":145}],48:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -8795,17 +8795,17 @@ | |
} | |
} | |
} | |
module.exports = { | |
inject: inject | |
}; | |
-},{"./BeforeInputEventPlugin":2,"./ChangeEventPlugin":6,"./ClientReactRootIndex":7,"./CompositionEventPlugin":8,"./DefaultEventPluginOrder":13,"./EnterLeaveEventPlugin":14,"./ExecutionEnvironment":21,"./HTMLDOMPropertyConfig":22,"./MobileSafariClickEventPlugin":25,"./ReactBrowserComponentMixin":29,"./ReactComponentBrowserEnvironment":33,"./ReactDOMButton":38,"./ReactDOMComponent":39,"./ReactDOMForm":40,"./ReactDOMImg":42,"./ReactDOMInput":43,"./ReactDOMOption":44,"./ReactDOMSelect":45,"./ReactDOMTextarea":47,"./ReactDefaultBatchingStrategy":48,"./ReactDefaultPerf":50,"./ReactEventListener":57,"./ReactInjection":58,"./ReactInstanceHandles":60,"./ReactMount":63,"./SVGDOMPropertyConfig":80,"./SelectEventPlugin":81,"./ServerReactRootIndex":82,"./SimpleEventPlugin":83,"./createFullPageComponent":103}],50:[function(_dereq_,module,exports){ | |
+},{"./BeforeInputEventPlugin":3,"./ChangeEventPlugin":7,"./ClientReactRootIndex":8,"./CompositionEventPlugin":9,"./DefaultEventPluginOrder":14,"./EnterLeaveEventPlugin":15,"./ExecutionEnvironment":22,"./HTMLDOMPropertyConfig":23,"./MobileSafariClickEventPlugin":26,"./ReactBrowserComponentMixin":29,"./ReactComponentBrowserEnvironment":33,"./ReactDOMButton":38,"./ReactDOMComponent":39,"./ReactDOMForm":40,"./ReactDOMImg":42,"./ReactDOMInput":43,"./ReactDOMOption":44,"./ReactDOMSelect":45,"./ReactDOMTextarea":47,"./ReactDefaultBatchingStrategy":48,"./ReactDefaultPerf":50,"./ReactEventListener":57,"./ReactInjection":58,"./ReactInstanceHandles":60,"./ReactMount":63,"./SVGDOMPropertyConfig":80,"./SelectEventPlugin":81,"./ServerReactRootIndex":82,"./SimpleEventPlugin":83,"./createFullPageComponent":103}],50:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -9055,17 +9055,17 @@ | |
return func.apply(this, args); | |
} | |
}; | |
} | |
}; | |
module.exports = ReactDefaultPerf; | |
-},{"./DOMProperty":10,"./ReactDefaultPerfAnalysis":51,"./ReactMount":63,"./ReactPerf":68,"./performanceNow":139}],51:[function(_dereq_,module,exports){ | |
+},{"./DOMProperty":11,"./ReactDefaultPerfAnalysis":51,"./ReactMount":63,"./ReactPerf":68,"./performanceNow":139}],51:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -9915,17 +9915,17 @@ | |
); | |
runEventQueueInBatch(events); | |
} | |
}; | |
module.exports = ReactEventEmitterMixin; | |
-},{"./EventPluginHub":17}],57:[function(_dereq_,module,exports){ | |
+},{"./EventPluginHub":18}],57:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -10098,17 +10098,17 @@ | |
} finally { | |
TopLevelCallbackBookKeeping.release(bookKeeping); | |
} | |
} | |
}; | |
module.exports = ReactEventListener; | |
-},{"./EventListener":16,"./ExecutionEnvironment":21,"./PooledClass":27,"./ReactInstanceHandles":60,"./ReactMount":63,"./ReactUpdates":79,"./getEventTarget":117,"./getUnboundedScrollPosition":122}],58:[function(_dereq_,module,exports){ | |
+},{"./EventListener":17,"./ExecutionEnvironment":22,"./PooledClass":28,"./ReactInstanceHandles":60,"./ReactMount":63,"./ReactUpdates":79,"./getEventTarget":117,"./getUnboundedScrollPosition":122}],58:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -10138,17 +10138,17 @@ | |
NativeComponent: ReactNativeComponent.injection, | |
Perf: ReactPerf.injection, | |
RootIndex: ReactRootIndex.injection, | |
Updates: ReactUpdates.injection | |
}; | |
module.exports = ReactInjection; | |
-},{"./DOMProperty":10,"./EventPluginHub":17,"./ReactBrowserEventEmitter":30,"./ReactComponent":32,"./ReactCompositeComponent":34,"./ReactEmptyComponent":54,"./ReactNativeComponent":66,"./ReactPerf":68,"./ReactRootIndex":75,"./ReactUpdates":79}],59:[function(_dereq_,module,exports){ | |
+},{"./DOMProperty":11,"./EventPluginHub":18,"./ReactBrowserEventEmitter":30,"./ReactComponent":32,"./ReactCompositeComponent":34,"./ReactEmptyComponent":54,"./ReactNativeComponent":66,"./ReactPerf":68,"./ReactRootIndex":75,"./ReactUpdates":79}],59:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -11585,17 +11585,17 @@ | |
'renderComponent', | |
'render', | |
this, | |
ReactMount.render | |
); | |
module.exports = ReactMount; | |
-},{"./DOMProperty":10,"./ReactBrowserEventEmitter":30,"./ReactCurrentOwner":36,"./ReactElement":52,"./ReactInstanceHandles":60,"./ReactLegacyElement":61,"./ReactPerf":68,"./containsNode":101,"./deprecated":106,"./getReactRootElementInContainer":120,"./instantiateReactComponent":125,"./invariant":126,"./shouldUpdateReactComponent":142,"./warning":145}],64:[function(_dereq_,module,exports){ | |
+},{"./DOMProperty":11,"./ReactBrowserEventEmitter":30,"./ReactCurrentOwner":36,"./ReactElement":52,"./ReactInstanceHandles":60,"./ReactLegacyElement":61,"./ReactPerf":68,"./containsNode":101,"./deprecated":106,"./getReactRootElementInContainer":120,"./instantiateReactComponent":125,"./invariant":126,"./shouldUpdateReactComponent":142,"./warning":145}],64:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -12958,17 +12958,17 @@ | |
this.reset(); | |
} | |
}); | |
PooledClass.addPoolingTo(ReactPutListenerQueue); | |
module.exports = ReactPutListenerQueue; | |
-},{"./PooledClass":27,"./ReactBrowserEventEmitter":30}],74:[function(_dereq_,module,exports){ | |
+},{"./PooledClass":28,"./ReactBrowserEventEmitter":30}],74:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -13132,17 +13132,17 @@ | |
Object.assign(ReactReconcileTransaction.prototype, Transaction.Mixin, Mixin); | |
PooledClass.addPoolingTo(ReactReconcileTransaction); | |
module.exports = ReactReconcileTransaction; | |
-},{"./CallbackQueue":5,"./PooledClass":27,"./ReactBrowserEventEmitter":30,"./ReactInputSelection":59,"./ReactPutListenerQueue":73,"./Transaction":95}],75:[function(_dereq_,module,exports){ | |
+},{"./CallbackQueue":6,"./PooledClass":28,"./ReactBrowserEventEmitter":30,"./ReactInputSelection":59,"./ReactPutListenerQueue":73,"./Transaction":95}],75:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -13353,17 +13353,17 @@ | |
Transaction.Mixin, | |
Mixin | |
); | |
PooledClass.addPoolingTo(ReactServerRenderingTransaction); | |
module.exports = ReactServerRenderingTransaction; | |
-},{"./CallbackQueue":5,"./PooledClass":27,"./ReactPutListenerQueue":73,"./Transaction":95,"./emptyFunction":107}],78:[function(_dereq_,module,exports){ | |
+},{"./CallbackQueue":6,"./PooledClass":28,"./ReactPutListenerQueue":73,"./Transaction":95,"./emptyFunction":107}],78:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -13458,17 +13458,17 @@ | |
// Bypass validation and configuration | |
return new ReactElement(ReactTextComponent, null, null, null, null, text); | |
}; | |
ReactTextComponentFactory.type = ReactTextComponent; | |
module.exports = ReactTextComponentFactory; | |
-},{"./DOMPropertyOperations":11,"./ReactComponent":32,"./ReactElement":52,"./escapeTextForBrowser":109}],79:[function(_dereq_,module,exports){ | |
+},{"./DOMPropertyOperations":12,"./ReactComponent":32,"./ReactElement":52,"./escapeTextForBrowser":109}],79:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -13745,17 +13745,17 @@ | |
enqueueUpdate: enqueueUpdate, | |
flushBatchedUpdates: flushBatchedUpdates, | |
injection: ReactUpdatesInjection, | |
asap: asap | |
}; | |
module.exports = ReactUpdates; | |
-},{"./CallbackQueue":5,"./PooledClass":27,"./ReactCurrentOwner":36,"./ReactPerf":68,"./Transaction":95,"./invariant":126,"./warning":145}],80:[function(_dereq_,module,exports){ | |
+},{"./CallbackQueue":6,"./PooledClass":28,"./ReactCurrentOwner":36,"./ReactPerf":68,"./Transaction":95,"./invariant":126,"./warning":145}],80:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -13837,17 +13837,17 @@ | |
strokeWidth: 'stroke-width', | |
textAnchor: 'text-anchor', | |
viewBox: 'viewBox' | |
} | |
}; | |
module.exports = SVGDOMPropertyConfig; | |
-},{"./DOMProperty":10}],81:[function(_dereq_,module,exports){ | |
+},{"./DOMProperty":11}],81:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -14032,17 +14032,17 @@ | |
case topLevelTypes.topKeyUp: | |
return constructSelectEvent(nativeEvent); | |
} | |
} | |
}; | |
module.exports = SelectEventPlugin; | |
-},{"./EventConstants":15,"./EventPropagators":20,"./ReactInputSelection":59,"./SyntheticEvent":87,"./getActiveElement":113,"./isTextInputElement":129,"./keyOf":133,"./shallowEqual":141}],82:[function(_dereq_,module,exports){ | |
+},{"./EventConstants":16,"./EventPropagators":21,"./ReactInputSelection":59,"./SyntheticEvent":87,"./getActiveElement":113,"./isTextInputElement":129,"./keyOf":133,"./shallowEqual":141}],82:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -14489,17 +14489,17 @@ | |
EventPropagators.accumulateTwoPhaseDispatches(event); | |
return event; | |
} | |
}; | |
module.exports = SimpleEventPlugin; | |
-},{"./EventConstants":15,"./EventPluginUtils":19,"./EventPropagators":20,"./SyntheticClipboardEvent":84,"./SyntheticDragEvent":86,"./SyntheticEvent":87,"./SyntheticFocusEvent":88,"./SyntheticKeyboardEvent":90,"./SyntheticMouseEvent":91,"./SyntheticTouchEvent":92,"./SyntheticUIEvent":93,"./SyntheticWheelEvent":94,"./getEventCharCode":114,"./invariant":126,"./keyOf":133,"./warning":145}],84:[function(_dereq_,module,exports){ | |
+},{"./EventConstants":16,"./EventPluginUtils":20,"./EventPropagators":21,"./SyntheticClipboardEvent":84,"./SyntheticDragEvent":86,"./SyntheticEvent":87,"./SyntheticFocusEvent":88,"./SyntheticKeyboardEvent":90,"./SyntheticMouseEvent":91,"./SyntheticTouchEvent":92,"./SyntheticUIEvent":93,"./SyntheticWheelEvent":94,"./getEventCharCode":114,"./invariant":126,"./keyOf":133,"./warning":145}],84:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -14777,17 +14777,17 @@ | |
PooledClass.addPoolingTo(Class, PooledClass.threeArgumentPooler); | |
}; | |
PooledClass.addPoolingTo(SyntheticEvent, PooledClass.threeArgumentPooler); | |
module.exports = SyntheticEvent; | |
-},{"./PooledClass":27,"./emptyFunction":107,"./getEventTarget":117}],88:[function(_dereq_,module,exports){ | |
+},{"./PooledClass":28,"./emptyFunction":107,"./getEventTarget":117}],88:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -15924,17 +15924,17 @@ | |
while (node.lastChild) { | |
node.removeChild(node.lastChild); | |
} | |
return nodes; | |
} | |
module.exports = createNodesFromMarkup; | |
-},{"./ExecutionEnvironment":21,"./createArrayFrom":102,"./getMarkupWrap":118,"./invariant":126}],105:[function(_dereq_,module,exports){ | |
+},{"./ExecutionEnvironment":22,"./createArrayFrom":102,"./getMarkupWrap":118,"./invariant":126}],105:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -15982,17 +15982,17 @@ | |
if (typeof value === 'string') { | |
value = value.trim(); | |
} | |
return value + 'px'; | |
} | |
module.exports = dangerousStyleValue; | |
-},{"./CSSProperty":3}],106:[function(_dereq_,module,exports){ | |
+},{"./CSSProperty":4}],106:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -16633,17 +16633,17 @@ | |
shouldWrap[nodeName] = !dummyNode.firstChild; | |
} | |
return shouldWrap[nodeName] ? markupWrap[nodeName] : null; | |
} | |
module.exports = getMarkupWrap; | |
-},{"./ExecutionEnvironment":21,"./invariant":126}],119:[function(_dereq_,module,exports){ | |
+},{"./ExecutionEnvironment":22,"./invariant":126}],119:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -16780,17 +16780,17 @@ | |
'textContent' : | |
'innerText'; | |
} | |
return contentKey; | |
} | |
module.exports = getTextContentAccessor; | |
-},{"./ExecutionEnvironment":21}],122:[function(_dereq_,module,exports){ | |
+},{"./ExecutionEnvironment":22}],122:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -17126,17 +17126,17 @@ | |
isSupported = document.implementation.hasFeature('Events.wheel', '3.0'); | |
} | |
return isSupported; | |
} | |
module.exports = isEventSupported; | |
-},{"./ExecutionEnvironment":21}],128:[function(_dereq_,module,exports){ | |
+},{"./ExecutionEnvironment":22}],128:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -17538,17 +17538,17 @@ | |
performance = | |
window.performance || | |
window.msPerformance || | |
window.webkitPerformance; | |
} | |
module.exports = performance || {}; | |
-},{"./ExecutionEnvironment":21}],139:[function(_dereq_,module,exports){ | |
+},{"./ExecutionEnvironment":22}],139:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -17644,17 +17644,17 @@ | |
node.innerHTML = html; | |
} | |
}; | |
} | |
} | |
module.exports = setInnerHTML; | |
-},{"./ExecutionEnvironment":21}],141:[function(_dereq_,module,exports){ | |
+},{"./ExecutionEnvironment":22}],141:[function(_dereq_,module,exports){ | |
/** | |
* Copyright 2013-2014, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
@@ -18020,11 +18020,10 @@ | |
var argIndex = 0; | |
console.warn('Warning: ' + format.replace(/%s/g, function() {return args[argIndex++];})); | |
} | |
}; | |
} | |
module.exports = warning; | |
-},{"./emptyFunction":107}]},{},[28]) | |
-(28) | |
+},{"./emptyFunction":107}]},{},[1])(1) | |
}); | |
\ No newline at end of file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi I see that you use React, so I am sure that you will find interesting the https://reactjs.co - this is the free online convention and tutorial book for React.JS Developers. React is not only the View (in MVC) anymore. ReactJS For Dummies: Why & How to Learn React Redux, the Right Way.