Skip to content

Commit 90ab856

Browse files
committed
ReactSWFCompat now stops IE8 leaking on SWF unload
1 parent 8d41c08 commit 90ab856

9 files changed

+38
-10
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-swf",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"license": "MIT",
55
"description": "Shockwave Flash Player component for React",
66
"authors": ["Andreas Svensson <andreas@syranide.com>"],

npm-react-swf/compat.js

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! react-swf v1.0.4 | @syranide | MIT license */
1+
/*! react-swf v1.0.5 | @syranide | MIT license */
22

33
'use strict';
44

@@ -52,6 +52,20 @@ ReactSWFCompat.prototype.componentDidUpdate = function() {
5252
ReactDOM.render(swfElement, this._container);
5353
};
5454

55+
ReactSWFCompat.prototype.componentWillUnmount = function() {
56+
// IE8 leaks nodes if AS3 `ExternalInterface.addCallback`-functions remain.
57+
if (document.documentMode < 9) {
58+
var node = this.getFPDOMNode();
59+
60+
// Node-methods are not enumerable in IE8, but properties are.
61+
for (var key in node) {
62+
if (typeof node[key] === 'function') {
63+
node[key] = null;
64+
}
65+
}
66+
}
67+
};
68+
5569
ReactSWFCompat.prototype.render = function() {
5670
var containerProps = {
5771
ref: this._containerRefCallback

npm-react-swf/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-swf",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"license": "MIT",
55
"description": "Shockwave Flash Player component for React",
66
"author": "Andreas Svensson <andreas@syranide.com>",

npm-react-swf/react-swf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! react-swf v1.0.4 | @syranide | MIT license */
1+
/*! react-swf v1.0.5 | @syranide | MIT license */
22

33
'use strict';
44

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-swf",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"license": "MIT",
55
"description": "Shockwave Flash Player component for React",
66
"author": "Andreas Svensson <andreas@syranide.com>",

react-swf-compat.js

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! react-swf v1.0.4 | @syranide | MIT license */
1+
/*! react-swf v1.0.5 | @syranide | MIT license */
22

33
(function(root, factory) {
44
if (typeof define === 'function' && define.amd) {
@@ -57,6 +57,20 @@
5757
ReactDOM.render(swfElement, this._container);
5858
};
5959

60+
ReactSWFCompat.prototype.componentWillUnmount = function() {
61+
// IE8 leaks nodes if AS3 `ExternalInterface.addCallback`-functions remain.
62+
if (document.documentMode < 9) {
63+
var node = this.getFPDOMNode();
64+
65+
// Node-methods are not enumerable in IE8, but properties are.
66+
for (var key in node) {
67+
if (typeof node[key] === 'function') {
68+
node[key] = null;
69+
}
70+
}
71+
}
72+
};
73+
6074
ReactSWFCompat.prototype.render = function() {
6175
var containerProps = {
6276
ref: this._containerRefCallback

react-swf-compat.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

react-swf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! react-swf v1.0.4 | @syranide | MIT license */
1+
/*! react-swf v1.0.5 | @syranide | MIT license */
22

33
(function(root, factory) {
44
if (typeof define === 'function' && define.amd) {

react-swf.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)