Skip to content

Commit a4c8b27

Browse files
committed
Add thank you section
1 parent eaf26ab commit a4c8b27

File tree

4 files changed

+22
-0
lines changed

4 files changed

+22
-0
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,10 @@ All children components receive the following methods via props:
133133
- `fullscreen`
134134
- `setVolume`
135135

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

137141
## License
138142
MIT

demo/browserstack.png

13.9 KB
Loading

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,9 @@ var Main = React.createClass({
129129
</ul>
130130
</div>
131131
</div>
132+
<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+
</div>
132135
</div>
133136
);
134137
}

demo/src/components/index/main/main.css

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,19 @@
7171
margin-bottom: 10px;
7272
}
7373

74+
.main__browser-stack {
75+
font-size: 12px;
76+
text-align: center;
77+
padding: 40px 80px;
78+
}
79+
80+
.main__browser-stack p a {
81+
top: 6px;
82+
position: relative;
83+
margin: 0 5px;
84+
}
7485

86+
.main__browser-stack-logo {
87+
width: 100px;
88+
height: auto;
89+
}

0 commit comments

Comments
 (0)