Skip to content

Commit cd80af9

Browse files
committed
Fix logo in demo
1 parent 6f52f11 commit cd80af9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ All children components receive the following methods via props:
136136
## Thank You
137137

138138
<img src="http://mderrick.github.io/react-html5video/browserstack.png?v=1" height="22" width="100" />
139+
139140
[BrowserStack](http://www.browserstack.com) for a free subscription to help test cross browser.
140141

141142
## License

demo/src/components/index/main/Main.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import React from 'react';
22
import Button from './../../button/button';
3+
import browserStackLogo from './../../../../browserstack.png';
34
import {default as Video, Controls, Overlay} from './../../../../../src/components/video/video';
45

56
var videos = [
@@ -130,7 +131,7 @@ var Main = React.createClass({
130131
</div>
131132
</div>
132133
<div className="main__browser-stack">
133-
<p>Thanks to <a href="http://www.browserstack.com" target="_blank"><img className="main__browser-stack-logo" src="./../../../browserstack.png" /></a> for a free subscription to help test cross browser.</p>
134+
<p>Thanks to <a href="http://www.browserstack.com" target="_blank"><img className="main__browser-stack-logo" src={browserStackLogo} /></a> for a free subscription to help test cross browser.</p>
134135
</div>
135136
</div>
136137
);

0 commit comments

Comments
 (0)