Skip to content

Commit bdd210c

Browse files
committed
add favicon
1 parent 06d3f9c commit bdd210c

File tree

4 files changed

+19
-22
lines changed

4 files changed

+19
-22
lines changed

components/settings-page.jsx

+9-14
Original file line numberDiff line numberDiff line change
@@ -40,43 +40,38 @@ module.exports = React.createClass({
4040
<div>
4141

4242
<div className="form-group row">
43-
4443
<label className="col-sm-2 control-label">Editor theme</label>
45-
4644
<div className="col-sm-10">
4745
<Dropdown values={['vs', 'vs-dark', 'hc-black']} value={this.state.theme} onChange={this.handleNewEditorTheme} />
4846
<p>The colour theme used by the text editor.</p>
4947
</div>
50-
51-
5248
</div>
5349

5450
<div className="form-group row">
55-
56-
5751
<label className="col-sm-2 control-label">Account</label>
58-
5952
<div className="col-sm-10">
6053
<p><a href="javascript:void(0);" onClick={this.handleSignOut} className="btn btn-primary" >Sign Out</a></p>
6154
<p>Delete the stored dropbox access token and reload the application.</p>
6255
</div>
63-
64-
6556
</div>
6657

67-
6858
<div className="form-group row">
69-
70-
7159
<label className="col-sm-2 control-label">Dropbox notifications</label>
72-
7360
<div className="col-sm-10">
7461
<Dropdown values={['Show notifications', 'Hide notifications']} value={this.state.notificationValue} onChange={this.handleNotificationsChange} />
7562
<p>Control whether the dropbox client application shows notifications when files are created or updated.</p>
7663
</div>
64+
</div>
7765

78-
66+
<div className="form-group row">
67+
<label className="col-sm-2 control-label">About</label>
68+
<div className="col-sm-10">
69+
<p><i className="fa fa-twitter"></i> Developed by <a href="https://twitter.com/richorama" target="_blank">Richard Astbury</a></p>
70+
<p><i className="fa fa-bug"></i> Report an issue <a href="https://github.com/richorama/muonrevo/issues/new" target="_blank">here</a></p>
71+
<p><i className="fa fa-github"></i> Feel free to fork the <a href="https://github.com/richorama/muonrevo/" target="_blank">repository</a></p>
72+
</div>
7973
</div>
74+
8075
</div>
8176
</Panel>
8277
</Page>

dist/muonrevo.min.js

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

favicon.png

645 Bytes
Loading

index.html

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css">
1010
<link rel="stylesheet" href="dist/stylesheets/AdminLTE.min.css">
1111
<link rel="stylesheet" href="dist/stylesheets/skin-blue.min.css">
12+
<link rel="shortcut icon" href="/favicon.png" type="image/png">
13+
<link rel="icon" href="/favicon.png" type="image/png">
1214

1315
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
1416
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->

0 commit comments

Comments
 (0)