diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /devtools/client/shared/vendor/REACT_VIRTUALIZED_UPGRADING | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'devtools/client/shared/vendor/REACT_VIRTUALIZED_UPGRADING')
-rw-r--r-- | devtools/client/shared/vendor/REACT_VIRTUALIZED_UPGRADING | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/devtools/client/shared/vendor/REACT_VIRTUALIZED_UPGRADING b/devtools/client/shared/vendor/REACT_VIRTUALIZED_UPGRADING new file mode 100644 index 000000000..50e0c1817 --- /dev/null +++ b/devtools/client/shared/vendor/REACT_VIRTUALIZED_UPGRADING @@ -0,0 +1,14 @@ +"react-virtualized" uses UMD style loading to work in many different environments. +It assumes that "react", "react-addons-shallow-compare", and "react-dom" are all included +separately via require statements. The paths to our installations are different. + +If upgrading: + +- Define the correct paths for React, etc and replace the require statements for the + module.exports case with the correct paths. +- Replace any references to React.addons.shallowCompare with the webpack module id. +- To support use in XUL documents, replace calls to createElement with + createElementNS("http://www.w3.org/1999/xhtml", but make sure that you aren't replacing + any calls to React.createElement. +- Also required for XUL, replace document.head and document.body with + document.firstElementChild |