File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -41,23 +41,23 @@ if (ReactSWF.isFPVersionSupported('10.0')) {
41
41
// success, go ahead and render the ReactSWF-component
42
42
} else {
43
43
// not supported, use fallback or direct to Flash Player installer
44
- console.log('Flash Player ' + ReactSWF.getFPVersion()) + ' is not supported');
44
+ console.log('Flash Player ' + ReactSWF.getFPVersion() + ' is not supported');
45
45
}
46
46
```
47
47
48
48
## Instructions
49
49
50
- #### Browser bundle (standalone)
50
+ #### Browser bundle
51
51
52
52
You are using ` react-swf.min.js `
53
53
54
- Simply include it with ` <script src="react-swf.min.js"></script> ` , it will be available through the global ` ReactSWF ` .
54
+ Simply include it with ` <script src="react-swf.min.js"></script> ` , globally available as ` ReactSWF ` .
55
55
56
- #### Browser bundle ( CommonJS/AMD)
56
+ #### CommonJS/AMD module loader
57
57
58
- Simply include it with ` <script src="react-swf.min.js"></script> ` , require it with ` var ReactSWF = require('react-swf') ` .
58
+ Simply require it with ` var ReactSWF = require('react-swf') ` .
59
59
60
- #### Node, NPM-package
60
+ #### NPM-package
61
61
62
62
Simply install it with ` npm install react-swf ` , require it with ` var ReactSWF = require('react-swf') ` .
63
63
You can’t perform that action at this time.
0 commit comments