Skip to content

Commit 04ab72c

Browse files
committed
[Readme][Docs] Add browserstack mention
1 parent 57dc961 commit 04ab72c

5 files changed

Lines changed: 988 additions & 2 deletions

File tree

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,11 @@ check out the [docs folder](https://github.com/callemall/material-ui/tree/master
153153
We'd greatly appreciate any [contribution](https://github.com/callemall/material-ui/blob/master/CONTRIBUTING.md)
154154
you make. :)
155155

156+
## Thanks
157+
158+
[<img src="https://www.browserstack.com/images/mail/browserstack-logo-footer.png" width="120">](https://www.browserstack.com/)
159+
Thank you to [BrowserStack](https://www.browserstack.com/) for providing the infrastructure that allows us to test `material-ui` in real browsers.
160+
156161
## License
157162
This project is licensed under the terms of the
158163
[MIT license](https://github.com/callemall/material-ui/blob/master/LICENSE)

docs/src/app/components/Master.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,19 @@ class Master extends Component {
7878
color: lightWhite,
7979
maxWidth: 356,
8080
},
81+
browserstack: {
82+
display: 'flex',
83+
alignItems: 'flex-start',
84+
justifyContent: 'center',
85+
margin: '25px 15px 0',
86+
padding: 0,
87+
color: lightWhite,
88+
lineHeight: '25px',
89+
fontSize: 12,
90+
},
91+
browserstackLogo: {
92+
margin: '0 3px',
93+
},
8194
iconButton: {
8295
color: darkWhite,
8396
},
@@ -207,6 +220,13 @@ class Master extends Component {
207220
href="https://github.com/callemall/material-ui"
208221
linkButton={true}
209222
/>
223+
<p style={prepareStyles(styles.browserstack)}>
224+
{'Thank you to '}
225+
<a href="https://www.browserstack.com" style={prepareStyles(styles.browserstackLogo)} target="_blank">
226+
<img src="http://www.browserstack.com/images/layout/logo.png" height="25" width="auto" />
227+
</a>
228+
{' for providing real browser testing infrastructure.'}
229+
</p>
210230
</FullWidthSection>
211231
</div>
212232
);

docs/webpack-dev-server.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const config = {
88
entry: [
99
'webpack/hot/dev-server',
1010
'webpack/hot/only-dev-server',
11-
path.join(__dirname, '/src/app/app.js'),
11+
path.resolve(__dirname, 'src/app/app.js'),
1212
],
1313
// Webpack config options on how to obtain modules
1414
resolve: {

docs/webpack-production.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const CopyWebpackPlugin = require('copy-webpack-plugin');
66
const config = {
77
// Entry point to the project
88
entry: [
9-
path.join(__dirname, '/src/app/app.js'),
9+
path.resolve(__dirname, 'src/app/app.js'),
1010
],
1111
// Webpack config options on how to obtain modules
1212
resolve: {

0 commit comments

Comments
 (0)